Files
codeql/ruby/ql/test/library-tests/ast/operations/operation.ql
2022-09-13 19:59:56 +02:00

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