mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
13 lines
390 B
Plaintext
13 lines
390 B
Plaintext
// generated by codegen/codegen.py
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from ClassDecl x, Type getInterfaceType, string getName, Type getType
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getInterfaceType = x.getInterfaceType() and
|
|
getName = x.getName() and
|
|
getType = x.getType()
|
|
select x, "getInterfaceType:", getInterfaceType, "getName:", getName, "getType:", getType
|