Skip to content

Commit

Permalink
refactor(semantic)!: remove ScopeFlags::Modifiers (#7935)
Browse files Browse the repository at this point in the history
#7932 removed the only usage of `ScopeFlags::Modifiers`. So we don't need it any more. Remove it.
  • Loading branch information
overlookmotel committed Dec 16, 2024
1 parent 14c51ff commit 84b75a0
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 84b75a0

Please sign in to comment.