oxc_syntax/generated/
derive_content_eq.rs1#![allow(clippy::match_same_arms)]
5
6use oxc_span::ContentEq;
7
8use crate::number::*;
9use crate::operator::*;
10
11impl ContentEq for NumberBase {
12 fn content_eq(&self, other: &Self) -> bool {
13 self == other
14 }
15}
16
17impl ContentEq for BigintBase {
18 fn content_eq(&self, other: &Self) -> bool {
19 self == other
20 }
21}
22
23impl ContentEq for AssignmentOperator {
24 fn content_eq(&self, other: &Self) -> bool {
25 self == other
26 }
27}
28
29impl ContentEq for BinaryOperator {
30 fn content_eq(&self, other: &Self) -> bool {
31 self == other
32 }
33}
34
35impl ContentEq for LogicalOperator {
36 fn content_eq(&self, other: &Self) -> bool {
37 self == other
38 }
39}
40
41impl ContentEq for UnaryOperator {
42 fn content_eq(&self, other: &Self) -> bool {
43 self == other
44 }
45}
46
47impl ContentEq for UpdateOperator {
48 fn content_eq(&self, other: &Self) -> bool {
49 self == other
50 }
51}