We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42db992 commit e423436Copy full SHA for e423436
crates/js/src/transformer/mod.rs
@@ -102,8 +102,8 @@ impl TypedAstTransformer {
102
expr: Expression::Identifier(format!("{ident}_{}", method.name)),
103
}))
104
.collect(),
105
- TStatement::Annotated { annotations, stmt } => todo!(),
106
- TStatement::Namespace { stmts } => vec![],
+ TStatement::Annotated { .. } => todo!(),
+ TStatement::Namespace { .. } => vec![],
107
}
108
109
crates/tcast/src/types.rs
@@ -1,8 +1,4 @@
1
-use std::{
2
- mem,
3
- rc::Rc,
4
- sync::atomic::{AtomicU64, Ordering},
5
-};
+use std::mem;
6
7
use common::effects::Effect;
8
0 commit comments