Start using nodeIsMissing.

This commit is contained in:
Daniel Rosenwasser
2015-03-17 12:27:24 -07:00
parent 754a8a617c
commit 860c046376

View File

@@ -64,7 +64,7 @@ module ts {
}
export function isCompletedNode(n: Node, sourceFile: SourceFile): boolean {
if (n.getFullWidth() === 0) {
if (nodeIsMissing(n)) {
return false;
}