mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
renamed "constdeclstmt" to "const_decl_stmt"
This commit is contained in:
@@ -984,7 +984,7 @@ class VarDeclStmt extends @var_decl_stmt, DeclStmt { }
|
|||||||
* const fs = require('fs');
|
* const fs = require('fs');
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
class ConstDeclStmt extends @constdeclstmt, DeclStmt { }
|
class ConstDeclStmt extends @const_decl_stmt, DeclStmt { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A `let` declaration statement.
|
* A `let` declaration statement.
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ case @stmt.kind of
|
|||||||
| 19 = @case
|
| 19 = @case
|
||||||
| 20 = @catch_clause
|
| 20 = @catch_clause
|
||||||
| 21 = @for_of_stmt
|
| 21 = @for_of_stmt
|
||||||
| 22 = @constdeclstmt
|
| 22 = @const_decl_stmt
|
||||||
| 23 = @letstmt
|
| 23 = @letstmt
|
||||||
| 24 = @legacy_letstmt
|
| 24 = @legacy_letstmt
|
||||||
| 25 = @foreachstmt
|
| 25 = @foreachstmt
|
||||||
@@ -191,7 +191,7 @@ case @stmt.kind of
|
|||||||
| 39 = @global_augmentation_declaration
|
| 39 = @global_augmentation_declaration
|
||||||
;
|
;
|
||||||
|
|
||||||
@declstmt = @var_decl_stmt | @constdeclstmt | @letstmt | @legacy_letstmt;
|
@declstmt = @var_decl_stmt | @const_decl_stmt | @letstmt | @legacy_letstmt;
|
||||||
|
|
||||||
@exportdeclaration = @exportalldeclaration | @exportdefaultdeclaration | @exportnameddeclaration;
|
@exportdeclaration = @exportalldeclaration | @exportdefaultdeclaration | @exportnameddeclaration;
|
||||||
|
|
||||||
|
|||||||
@@ -142,7 +142,7 @@
|
|||||||
<v>61</v>
|
<v>61</v>
|
||||||
</e>
|
</e>
|
||||||
<e>
|
<e>
|
||||||
<k>@constdeclstmt</k>
|
<k>@const_decl_stmt</k>
|
||||||
<v>1118</v>
|
<v>1118</v>
|
||||||
</e>
|
</e>
|
||||||
<e>
|
<e>
|
||||||
|
|||||||
Reference in New Issue
Block a user