mirror of
https://github.com/github/codeql.git
synced 2026-08-04 01:13:00 +02:00
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
class AstNode extends @ruby_ast_node {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from AstNode ruby_singleton_class, AstNode body, int index, AstNode child
|
|
where
|
|
ruby_singleton_class_body(ruby_singleton_class, body) and
|
|
ruby_body_statement_child(body, index, child)
|
|
select ruby_singleton_class, index, child
|