mirror of
https://github.com/github/codeql.git
synced 2026-03-22 07:26:45 +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() |