Files
codeql/swift/ql/test/extractor-tests/generated/expr/ImplicitConversionExpr/ImplicitConversionExpr.ql
2022-12-07 13:46:51 +01:00

12 lines
371 B
Plaintext
Generated

// generated by codegen/codegen.py
import codeql.swift.elements
import TestUtils
from ImplicitConversionExpr x, string hasType, Expr getSubExpr
where
toBeTested(x) and
not x.isUnknown() and
(if x.hasType() then hasType = "yes" else hasType = "no") and
getSubExpr = x.getSubExpr()
select x, x.getPrimaryQlClasses(), "hasType:", hasType, "getSubExpr:", getSubExpr