mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +01:00
15 lines
413 B
Plaintext
Generated
15 lines
413 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(CopyExpr x, string getSubExpr__label, Expr getSubExpr) {
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getSubExpr__label = "getSubExpr:" and
|
|
getSubExpr = x.getSubExpr()
|
|
}
|
|
|
|
query predicate getType(CopyExpr x, Type getType) {
|
|
toBeTested(x) and not x.isUnknown() and getType = x.getType()
|
|
}
|