mirror of
https://github.com/github/codeql.git
synced 2026-08-05 09:53:29 +02:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
class AstNode extends @ruby_ast_node {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Location extends @location {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from AstNode ruby_pair, AstNode key, AstNode value, Location location
|
|
where
|
|
ruby_pair_def(ruby_pair, key, location) and
|
|
ruby_pair_value(ruby_pair, value)
|
|
select ruby_pair, key, value, location
|