diff --git a/src/compiler/parser.ts b/src/compiler/parser.ts index 6f9d72573e9..6ccae9fa86a 100644 --- a/src/compiler/parser.ts +++ b/src/compiler/parser.ts @@ -20,7 +20,7 @@ module ts { interface ReferenceComments { referencedFiles: FileReference[]; amdDependencies: string[]; -} + } export function getSourceFileOfNode(node: Node): SourceFile { while (node && node.kind !== SyntaxKind.SourceFile) node = node.parent;