Files
codeql/ruby/ql/test/library-tests/ast/operations/operation.ql
2021-10-15 11:47:28 +02:00

9 lines
218 B
Plaintext

import ruby
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