Skip to content

Commit 797f6da

Browse files
author
Arthur Ozga
committed
rename helper
1 parent a7c166c commit 797f6da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace ts {
6161
const noImplicitThis = compilerOptions.noImplicitThis === undefined ? compilerOptions.strict : compilerOptions.noImplicitThis;
6262

6363
const emitResolver = createResolver();
64-
const nodeBuilder = getNodeBuilder();
64+
const nodeBuilder = createNodeBuilder();
6565

6666
const undefinedSymbol = createSymbol(SymbolFlags.Property, "undefined");
6767
undefinedSymbol.declarations = [];
@@ -2202,7 +2202,7 @@ namespace ts {
22022202
return result;
22032203
}
22042204

2205-
function getNodeBuilder(): NodeBuilder {
2205+
function createNodeBuilder(): NodeBuilder {
22062206

22072207
let encounteredError = false;
22082208

0 commit comments

Comments
 (0)