mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-11 10:00:13 -06:00
Let's see if 'new' changes anything.
This commit is contained in:
parent
f671ea7574
commit
e42cfaf14c
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user