mirror of
https://github.com/github/codeql.git
synced 2026-02-20 00:43:44 +01:00
12 lines
322 B
Plaintext
Generated
12 lines
322 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from LoopExpr x, Expr getBody, string hasLabel
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getBody = x.getBody() and
|
|
if x.hasLabel() then hasLabel = "yes" else hasLabel = "no"
|
|
select x, "getBody:", getBody, "hasLabel:", hasLabel
|