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

12 lines
282 B
Plaintext
Generated

// generated by codegen, do not edit
import codeql.rust.elements
import TestUtils
from Function x, string getName, Expr getBody
where
toBeTested(x) and
not x.isUnknown() and
getName = x.getName() and
getBody = x.getBody()
select x, "getName:", getName, "getBody:", getBody