mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
259 B
Plaintext
9 lines
259 B
Plaintext
import ruby
|
|
import codeql.ruby.ast.internal.Module as M
|
|
|
|
query MethodBase getMethod(Module m, string name) {
|
|
result = M::ExposedForTestingOnly::getMethod(m, name)
|
|
}
|
|
|
|
query MethodBase lookupMethod(Module m, string name) { result = M::lookupMethod(m, name) }
|