updating tests

This commit is contained in:
Ahmad Farid
2015-04-03 15:28:23 -07:00
parent a4b8276ff1
commit 854d5496b4
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -549,7 +549,7 @@ module ts {
result = [];
}
result.push({ pos: startPos, end: pos, hasTrailingNewLine: hasTrailingNewLine, kind });
result.push({ pos: startPos, end: pos, hasTrailingNewLine: hasTrailingNewLine, kind: kind });
}
continue;
}
@@ -2565,6 +2565,10 @@ declare module "typescript" {
hasTrailingNewLine?: boolean;␍
>hasTrailingNewLine : boolean
kind: SyntaxKind;␍
>kind : SyntaxKind
>SyntaxKind : SyntaxKind
}␍
interface SourceFile extends Declaration {␍
>SourceFile : SourceFile