mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
17 lines
487 B
Plaintext
Generated
17 lines
487 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(
|
|
ExtractFunctionIsolationExpr x, string getFunctionExpr__label, Expr getFunctionExpr
|
|
) {
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getFunctionExpr__label = "getFunctionExpr:" and
|
|
getFunctionExpr = x.getFunctionExpr()
|
|
}
|
|
|
|
query predicate getType(ExtractFunctionIsolationExpr x, Type getType) {
|
|
toBeTested(x) and not x.isUnknown() and getType = x.getType()
|
|
}
|