Files
codeql/ruby/downgrades/24d81950f3ab7e67e14553e1a5111a04e8ae8445/ruby_pair_def.ql
2022-01-28 19:47:31 +01:00

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