Skip to content

Commit ebf650c

Browse files
committed
Control Flow: add more ordering for edges
1 parent 70e6db3 commit ebf650c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ module TestOutput {
916916
s
917917
order by
918918
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
919-
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString()
919+
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString()
920920
)
921921
).toString()
922922
}

ruby/ql/lib/codeql/ruby/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ module TestOutput {
916916
s
917917
order by
918918
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
919-
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString()
919+
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString()
920920
)
921921
).toString()
922922
}

swift/ql/lib/codeql/swift/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ module TestOutput {
916916
s
917917
order by
918918
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
919-
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString()
919+
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString()
920920
)
921921
).toString()
922922
}

0 commit comments

Comments
 (0)