Files
codeql/rust/ql/test/extractor-tests/generated/YieldExpr/YieldExpr.ql
2024-09-16 13:39:55 +02:00

11 lines
254 B
Plaintext
Generated

// generated by codegen, do not edit
import codeql.rust.elements
import TestUtils
from YieldExpr x, string hasExpr
where
toBeTested(x) and
not x.isUnknown() and
if x.hasExpr() then hasExpr = "yes" else hasExpr = "no"
select x, "hasExpr:", hasExpr