mirror of
https://github.com/github/codeql.git
synced 2026-03-20 22:46:47 +01:00
8 lines
204 B
Plaintext
8 lines
204 B
Plaintext
import javascript
|
|
|
|
from BreakOrContinueStmt boc, string label
|
|
where if boc.hasTargetLabel() then
|
|
label = boc.getTargetLabel()
|
|
else
|
|
label = "(none)"
|
|
select boc, label, boc.getTarget() |