mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
class Field extends @field {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Type extends @type {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class RefType extends @reftype {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Field f, string name, Type t, RefType parent
|
|
where fields(f, name, t, parent, _)
|
|
select f, name, t, parent
|