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

Lines Matching refs:COMMENT

57         COMMENT: 2,
81 // Following comment is replaced with generated state machine.
96 Comment = "/*" CommentContent "*"+ "/";
140 <DIV,NODIV> LineComment { this.tokenType = "javascript-comment"; return cursor; }
141 <DIV,NODIV> Comment { this.tokenType = "javascript-comment"; return cursor; }
142 <DIV,NODIV> CommentStart => COMMENT { this.tokenType = "javascript-comment"; return cursor; }
143 <COMMENT> CommentContent => COMMENT { this.tokenType = "javascript-comment"; return cursor; }
144 <COMMENT> CommentEnd => NODIV { this.tokenType = "javascript-comment"; return cursor; }