Skip to content

Commit 9c177a0

Browse files
authored
Replaced FunctionScopedVariable and BlockScopedVariable with just Variable
1 parent 82691b0 commit 9c177a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/collisions-resolver.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ import { verboseLog } from './logger';
1111

1212
const renamingSupportedSymbols: readonly ts.SymbolFlags[] = [
1313
ts.SymbolFlags.Alias,
14-
ts.SymbolFlags.FunctionScopedVariable,
15-
ts.SymbolFlags.BlockScopedVariable,
14+
ts.SymbolFlags.Variable,
1615
ts.SymbolFlags.Class,
1716
ts.SymbolFlags.Enum,
1817
ts.SymbolFlags.Function,

0 commit comments

Comments
 (0)