Skip to content

Commit 7f8a20e

Browse files
committed
shared: consistent order for consistency checks
1 parent 3a36d25 commit 7f8a20e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

shared/controlflow/codeql/controlflow/ControlFlowGraph.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2254,15 +2254,15 @@ module Make0<LocationSig Location, AstSig<Location> Ast> {
22542254
query = "ambiguousAdditionalNode" and
22552255
results = strictcount(AstNode n, string tag | ambiguousAdditionalNode(n, tag))
22562256
or
2257-
query = "missingInNodeForPostOrInOrder" and
2258-
results = strictcount(AstNode ast | missingInNodeForPostOrInOrder(ast))
2259-
or
22602257
query = "invalidAbruptCompletionOrigin" and
22612258
results =
22622259
strictcount(AstNode ast, PreControlFlowNode node |
22632260
invalidAbruptCompletionOrigin(ast, node)
22642261
)
22652262
or
2263+
query = "missingInNodeForPostOrInOrder" and
2264+
results = strictcount(AstNode ast | missingInNodeForPostOrInOrder(ast))
2265+
or
22662266
query = "multipleSuccessors" and
22672267
results =
22682268
strictcount(ControlFlowNode node, SuccessorType t, ControlFlowNode successor |

0 commit comments

Comments
 (0)