File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use proc_macro2::{Ident, Span};
2
2
use shared;
3
3
use syn;
4
4
5
- #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq , Eq ) ) ]
5
+ #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq ) ) ]
6
6
#[ derive( Default ) ]
7
7
pub struct Program {
8
8
pub exports : Vec < Export > ,
@@ -175,7 +175,7 @@ pub struct TypeAlias {
175
175
pub src : syn:: Type ,
176
176
}
177
177
178
- #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq , Eq ) ) ]
178
+ #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq ) ) ]
179
179
pub struct Const {
180
180
pub vis : syn:: Visibility ,
181
181
pub name : Ident ,
@@ -184,7 +184,7 @@ pub struct Const {
184
184
pub value : ConstValue ,
185
185
}
186
186
187
- #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq , Eq ) ) ]
187
+ #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq ) ) ]
188
188
/// same as webidl::ast::ConstValue
189
189
pub enum ConstValue {
190
190
BooleanLiteral ( bool ) ,
You can’t perform that action at this time.
0 commit comments