Fix indentation

This commit is contained in:
Yui T 2014-10-24 16:05:33 -07:00
parent 95f6cbe760
commit da10858703

View File

@ -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;