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