mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
10 lines
348 B
Plaintext
10 lines
348 B
Plaintext
import java
|
|
|
|
query predicate breakLabel(BreakStmt s, string label) { s.getLabel() = label }
|
|
|
|
query predicate continueLabel(ContinueStmt s, string label) { s.getLabel() = label }
|
|
|
|
query predicate breakTarget(KtBreakStmt s, KtLoopStmt l) { s.getLoopStmt() = l }
|
|
|
|
query predicate continueTarget(KtContinueStmt s, KtLoopStmt l) { s.getLoopStmt() = l }
|