Skip to content

Commit

Permalink
Replaced FunctionScopedVariable and BlockScopedVariable with just…
Browse files Browse the repository at this point in the history
… `Variable`
  • Loading branch information
timocov authored Jan 10, 2024
1 parent 82691b0 commit 9c177a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/collisions-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import { verboseLog } from './logger';

const renamingSupportedSymbols: readonly ts.SymbolFlags[] = [
ts.SymbolFlags.Alias,
ts.SymbolFlags.FunctionScopedVariable,
ts.SymbolFlags.BlockScopedVariable,
ts.SymbolFlags.Variable,
ts.SymbolFlags.Class,
ts.SymbolFlags.Enum,
ts.SymbolFlags.Function,
Expand Down

0 comments on commit 9c177a0

Please sign in to comment.