mirror of
https://github.com/github/codeql.git
synced 2025-12-23 12:16:33 +01:00
12 lines
328 B
Plaintext
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
|