Files
codeql/swift/ql/test/extractor-tests/declarations/func.ql
Paolo Tranquilli 553930d9e3 Swift: type visitor
This transfers the current state of `TypeVisitor` from the
proof-of-concept.
2022-05-20 15:42:20 +02:00

8 lines
166 B
Plaintext

import swift
from FuncDecl decl, string name
where
decl.getLocation().getFile().getName().matches("%swift/ql/test%") and
name = decl.getName()
select decl, name