renamed "linecomment" to "line_comment"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:55:18 +02:00
parent 136345d745
commit 03617fe18b
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ class Comment extends @comment, Locatable {
* <!-- an HTML line comment * <!-- an HTML line comment
* </pre> * </pre>
*/ */
class LineComment extends @linecomment, Comment { } class LineComment extends @line_comment, Comment { }
/** /**
* An HTML comment start/end token interpreted as a line comment. * An HTML comment start/end token interpreted as a line comment.

View File

@@ -805,7 +805,7 @@ case @comment.kind of
| 4 = @htmlcommentend; | 4 = @htmlcommentend;
@html_comment = @htmlcommentstart | @htmlcommentend; @html_comment = @htmlcommentstart | @htmlcommentend;
@linecomment = @slashslashcomment | @html_comment; @line_comment = @slashslashcomment | @html_comment;
@blockcomment = @slashstarcomment | @doccomment; @blockcomment = @slashstarcomment | @doccomment;
// source lines // source lines