mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
9 lines
229 B
Plaintext
9 lines
229 B
Plaintext
import codeql.ruby.AST
|
|
|
|
from Operation o, string operator, Expr operand, string pClass
|
|
where
|
|
operator = o.getOperator() and
|
|
operand = o.getAnOperand() and
|
|
pClass = o.getAPrimaryQlClass()
|
|
select o, operator, operand, pClass
|