Files
codeql/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql
Paolo Tranquilli 86ebb0bb68 Swift: fix qltest skipping and skip isUnknown
Also remove obsolete accessor and function hand-written tests.
2022-06-15 09:16:55 +02:00

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