mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
290 B
Plaintext
12 lines
290 B
Plaintext
// generated by codegen/codegen.py
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from UnresolvedDotExpr x, Expr getBase, string getName
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getBase = x.getBase() and
|
|
getName = x.getName()
|
|
select x, "getBase:", getBase, "getName:", getName
|