Skip to content

Commit

Permalink
refactor(semantic)!: remove ScopeFlags::Modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Dec 16, 2024
1 parent 14c51ff commit 64abfab
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/oxc_syntax/src/scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ bitflags! {
const SetAccessor = 1 << 8;
const CatchClause = 1 << 9;
const Var = Self::Top.bits() | Self::Function.bits() | Self::ClassStaticBlock.bits() | Self::TsModuleBlock.bits();
const Modifiers = Self::Constructor.bits() | Self::GetAccessor.bits() | Self::SetAccessor.bits();
}
}

Expand Down

0 comments on commit 64abfab

Please sign in to comment.