mirror of
https://github.com/github/codeql.git
synced 2026-08-03 17:03:02 +02:00
12 lines
224 B
Plaintext
12 lines
224 B
Plaintext
class Declaration extends @declaration {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class MangledName extends @mangledname {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Declaration d, MangledName n
|
|
where mangled_name(d, n, _)
|
|
select d, n
|