mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
renamed "htmlcommentstart" to "html_comment_start"
This commit is contained in:
@@ -76,7 +76,7 @@ class HtmlLineComment extends @html_comment, LineComment { }
|
||||
* <!-- an HTML line comment
|
||||
* ```
|
||||
*/
|
||||
class HtmlCommentStart extends @htmlcommentstart, HtmlLineComment { }
|
||||
class HtmlCommentStart extends @html_comment_start, HtmlLineComment { }
|
||||
|
||||
/**
|
||||
* An HTML comment end token interpreted as a line comment.
|
||||
|
||||
@@ -801,10 +801,10 @@ case @comment.kind of
|
||||
0 = @slashslashcomment
|
||||
| 1 = @slashstarcomment
|
||||
| 2 = @doccomment
|
||||
| 3 = @htmlcommentstart
|
||||
| 3 = @html_comment_start
|
||||
| 4 = @htmlcommentend;
|
||||
|
||||
@html_comment = @htmlcommentstart | @htmlcommentend;
|
||||
@html_comment = @html_comment_start | @htmlcommentend;
|
||||
@line_comment = @slashslashcomment | @html_comment;
|
||||
@block_comment = @slashstarcomment | @doccomment;
|
||||
|
||||
|
||||
@@ -1042,7 +1042,7 @@
|
||||
<v>19270</v>
|
||||
</e>
|
||||
<e>
|
||||
<k>@htmlcommentstart</k>
|
||||
<k>@html_comment_start</k>
|
||||
<v>1</v>
|
||||
</e>
|
||||
<e>
|
||||
|
||||
Reference in New Issue
Block a user