mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
6 lines
201 B
Plaintext
6 lines
201 B
Plaintext
import codeql_ruby.ast.Variable
|
|
|
|
query predicate parameter(Parameter p, Variable v) { p.getAnAccess().getVariable() = v }
|
|
|
|
query predicate parameterNoAcess(Parameter p) { not exists(p.getAnAccess()) }
|