mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
cdf4a09e65
swc_ecma_transforms: - Remove State / Clone - Fix hygiene bug of labels (#281) - Fix sequence expression in unary expression (#282)
13 lines
189 B
Rust
13 lines
189 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum ScopeKind {
|
|
Block,
|
|
Fn,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum IdentType {
|
|
Binding,
|
|
Ref,
|
|
Label,
|
|
}
|