mirror of
https://github.com/github/codeql.git
synced 2026-02-19 16:33:40 +01:00
7 lines
234 B
Plaintext
7 lines
234 B
Plaintext
import ruby
|
|
import codeql_ruby.ast.internal.Module as M
|
|
|
|
query MethodBase getMethod(Module m, string name) { result = M::getMethod(m, name) }
|
|
|
|
query MethodBase lookupMethod(Module m, string name) { result = M::lookupMethod(m, name) }
|