Files
codeql/swift/ql/test/extractor-tests/generated/expr/DotSyntaxCallExpr/DotSyntaxCallExpr.ql
2022-06-28 15:44:42 +02:00

12 lines
328 B
Plaintext

// generated by codegen/codegen.py
import codeql.swift.elements
import TestUtils
from DotSyntaxCallExpr x, Expr getFunction, Expr getBaseExpr
where
toBeTested(x) and
not x.isUnknown() and
getFunction = x.getFunction() and
getBaseExpr = x.getBaseExpr()
select x, "getFunction:", getFunction, "getBaseExpr:", getBaseExpr