module OracleSqlParser::Grammar::Expression::Compound::CompoundExpression4

Public Instance Methods

ast() click to toggle source
# File lib/oracle-sql-parser/grammar/expression/compound.rb, line 57
def ast
  OracleSqlParser::Ast::CompoundExpression[
    :has_parenthesis => ex.respond_to?(:left_parenthesis) ? true : nil,
    :left => ex.try(:left).ast,
    :op => ex.try(:op).ast,
    :right => ex.try(:right).ast,
  ]
end