mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
14 lines
334 B
Plaintext
14 lines
334 B
Plaintext
class Declaration extends @declaration {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class MangledName extends @mangledname {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Declaration d, MangledName n, boolean isComplete
|
|
where
|
|
mangled_name(d, n) and
|
|
if d instanceof @function then isComplete = false else isComplete = true
|
|
select d, n, isComplete
|