Store scanning information whether JSXText is just an all whitespaces

This commit is contained in:
Kanchalai Tanglertsampan
2017-04-11 14:55:26 -07:00
parent 17417e9a88
commit 4562fd089c
4 changed files with 12 additions and 5 deletions

View File

@@ -1572,7 +1572,8 @@
}
export interface JsxText extends Node {
kind: SyntaxKind.JsxText;
kind: SyntaxKind.JsxText,
containsOnlyWhiteSpaces: boolean,
parent?: JsxElement;
}