Home | History | Annotate | Download | only in front-end

Lines Matching refs:COMMENT

50         COMMENT: 1,
173 // Following comment is replaced with generated state machine.
187 Comment = "<!--" CommentContent "-->";
214 <INITIAL> Comment { this.tokenType = "html-comment"; return cursor; }
215 <INITIAL> CommentStart => COMMENT { this.tokenType = "html-comment"; return cursor; }
216 <COMMENT> CommentContent => COMMENT { this.tokenType = "html-comment"; return cursor; }
217 <COMMENT> CommentEnd => INITIAL { this.tokenType = "html-comment"; return cursor; }