mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
390 B
Plaintext
Generated
12 lines
390 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from ExtractFunctionIsolationExpr x, string hasType, Expr getFunctionExpr
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
(if x.hasType() then hasType = "yes" else hasType = "no") and
|
|
getFunctionExpr = x.getFunctionExpr()
|
|
select x, "hasType:", hasType, "getFunctionExpr:", getFunctionExpr
|