mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
renamed "continuestmt" to "continue_stmt"
This commit is contained in:
@@ -459,7 +459,7 @@ class LabeledStmt extends @labeled_stmt, Stmt {
|
||||
|
||||
private class TJumpStmt = TBreakOrContinueStmt or @returnstmt or @throwstmt;
|
||||
|
||||
private class TBreakOrContinueStmt = @break_stmt or @continuestmt;
|
||||
private class TBreakOrContinueStmt = @break_stmt or @continue_stmt;
|
||||
|
||||
/**
|
||||
* A statement that disrupts structured control flow, that is, a `continue` statement,
|
||||
@@ -536,7 +536,7 @@ class BreakStmt extends @break_stmt, BreakOrContinueStmt { }
|
||||
* continue;
|
||||
* ```
|
||||
*/
|
||||
class ContinueStmt extends @continuestmt, BreakOrContinueStmt { }
|
||||
class ContinueStmt extends @continue_stmt, BreakOrContinueStmt { }
|
||||
|
||||
/**
|
||||
* A `with` statement.
|
||||
|
||||
@@ -155,7 +155,7 @@ case @stmt.kind of
|
||||
| 3 = @if_stmt
|
||||
| 4 = @labeled_stmt
|
||||
| 5 = @break_stmt
|
||||
| 6 = @continuestmt
|
||||
| 6 = @continue_stmt
|
||||
| 7 = @withstmt
|
||||
| 8 = @switchstmt
|
||||
| 9 = @returnstmt
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
<v>10149</v>
|
||||
</e>
|
||||
<e>
|
||||
<k>@continuestmt</k>
|
||||
<k>@continue_stmt</k>
|
||||
<v>1642</v>
|
||||
</e>
|
||||
<e>
|
||||
|
||||
Reference in New Issue
Block a user