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

Lines Matching refs:COMMENT

103         COMMENT: 1,
144 // Following comment is replaced with generated state machine.
158 Comment = "/*" CommentContent "*"+ "/";
181 <INITIAL> Comment { this.tokenType = "css-comment"; return cursor; }
182 <INITIAL> CommentStart => COMMENT { this.tokenType = "css-comment"; return cursor; }
183 <COMMENT> CommentContent => COMMENT { this.tokenType = "css-comment"; return cursor; }
184 <COMMENT> CommentEnd => INITIAL { this.tokenType = "css-comment"; return cursor; }