Skip to content

Commit 9a66f3a

Browse files
committed
renamed "slashstarcomment" to "slashstar_comment"
1 parent 13a593c commit 9a66f3a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

javascript/ql/src/semmle/javascript/Comments.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class BlockComment extends @block_comment, Comment { }
123123
* (but not a JSDoc comment) */
124124
* </pre>
125125
*/
126-
class SlashStarComment extends @slashstarcomment, BlockComment { }
126+
class SlashStarComment extends @slashstar_comment, BlockComment { }
127127

128128
/**
129129
* A JSDoc comment.

javascript/ql/src/semmlecode.javascript.dbscheme

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,14 +799,14 @@ comments (unique int id: @comment,
799799

800800
case @comment.kind of
801801
0 = @slashslash_comment
802-
| 1 = @slashstarcomment
802+
| 1 = @slashstar_comment
803803
| 2 = @doccomment
804804
| 3 = @html_comment_start
805805
| 4 = @htmlcommentend;
806806

807807
@html_comment = @html_comment_start | @htmlcommentend;
808808
@line_comment = @slashslash_comment | @html_comment;
809-
@block_comment = @slashstarcomment | @doccomment;
809+
@block_comment = @slashstar_comment | @doccomment;
810810

811811
// source lines
812812
lines (unique int id: @line,

javascript/ql/src/semmlecode.javascript.dbscheme.stats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@
10341034
<v>76841</v>
10351035
</e>
10361036
<e>
1037-
<k>@slashstarcomment</k>
1037+
<k>@slashstar_comment</k>
10381038
<v>8834</v>
10391039
</e>
10401040
<e>

0 commit comments

Comments
 (0)