refactor(semantic)!: remove ScopeFlags::Modifiers (#7935)

#7932 removed the only usage of `ScopeFlags::Modifiers`. So we don't need it any more. Remove it.
This commit is contained in:
overlookmotel 2024-12-16 12:15:12 +00:00
parent 14c51ffa1d
commit 84b75a0e5f

View file

@ -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();
}
}