mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01:00
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
import swift
|
|
|
|
string describe(Decl decl) {
|
|
result = "getAliasedType:" + decl.(TypeAliasDecl).getAliasedType().toString()
|
|
}
|
|
|
|
from Decl decl
|
|
where decl.getLocation().getFile().getName().matches("%swift/ql/test%")
|
|
select decl, concat(describe(decl), ", ")
|