feat(HtmlLexer): add support for alphabetic cases

This commit is contained in:
Victor Berchet
2016-06-09 13:48:53 -07:00
parent 537e99b4ea
commit 43148d8233
7 changed files with 285 additions and 223 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ class TreeBuilder {
let switchValue = this._advance();
let type = this._advance();
let cases: any[] /** TODO #9100 */ = [];
let cases: HtmlExpansionCaseAst[] = [];
// read =
while (this.peek.type === HtmlTokenType.EXPANSION_CASE_VALUE) {