mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-15 22:15:05 -05:00
Let's see if 'new' changes anything.
This commit is contained in:
@@ -97,7 +97,7 @@ namespace ts {
|
||||
|
||||
type ForEachChildFunction = <T>(node: any, cbNode: (node: Node) => T | undefined, cbNodes?: (nodes: NodeArray<Node>) => T | undefined) => T | undefined;
|
||||
|
||||
const forEachChildTable = Array<ForEachChildFunction>(SyntaxKind.Count);
|
||||
const forEachChildTable = new Array<ForEachChildFunction>(SyntaxKind.Count);
|
||||
|
||||
forEachChildTable[SyntaxKind.QualifiedName] = forEachQualifiedName;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user