mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
renamed "breakstmt" to "break_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 = @breakstmt or @continuestmt;
|
||||
private class TBreakOrContinueStmt = @break_stmt or @continuestmt;
|
||||
|
||||
/**
|
||||
* A statement that disrupts structured control flow, that is, a `continue` statement,
|
||||
@@ -524,7 +524,7 @@ class BreakOrContinueStmt extends TBreakOrContinueStmt, JumpStmt {
|
||||
* break;
|
||||
* ```
|
||||
*/
|
||||
class BreakStmt extends @breakstmt, BreakOrContinueStmt { }
|
||||
class BreakStmt extends @break_stmt, BreakOrContinueStmt { }
|
||||
|
||||
/**
|
||||
* A `continue` statement.
|
||||
|
||||
@@ -154,7 +154,7 @@ case @stmt.kind of
|
||||
| 2 = @expr_stmt
|
||||
| 3 = @if_stmt
|
||||
| 4 = @labeled_stmt
|
||||
| 5 = @breakstmt
|
||||
| 5 = @break_stmt
|
||||
| 6 = @continuestmt
|
||||
| 7 = @withstmt
|
||||
| 8 = @switchstmt
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
<v>1378</v>
|
||||
</e>
|
||||
<e>
|
||||
<k>@breakstmt</k>
|
||||
<k>@break_stmt</k>
|
||||
<v>10149</v>
|
||||
</e>
|
||||
<e>
|
||||
|
||||
Reference in New Issue
Block a user