We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f671ea7 commit e42cfafCopy full SHA for e42cfaf
src/compiler/parser.ts
@@ -97,7 +97,7 @@ namespace ts {
97
98
type ForEachChildFunction = <T>(node: any, cbNode: (node: Node) => T | undefined, cbNodes?: (nodes: NodeArray<Node>) => T | undefined) => T | undefined;
99
100
- const forEachChildTable = Array<ForEachChildFunction>(SyntaxKind.Count);
+ const forEachChildTable = new Array<ForEachChildFunction>(SyntaxKind.Count);
101
102
forEachChildTable[SyntaxKind.QualifiedName] = forEachQualifiedName;
103
0 commit comments