module OracleSqlParser::Grammar::Condition::Between::BetweenCondition2

Public Instance Methods

ast() click to toggle source
# File lib/oracle-sql-parser/grammar/condition/between.rb, line 65
def ast
  OracleSqlParser::Ast::BetweenCondition[
    :target => target.ast,
    :not => not_keyword.ast,
    :from => from.ast,
    :to => to.ast
  ]
end
not_keyword() click to toggle source
# File lib/oracle-sql-parser/grammar/condition/between.rb, line 74
def not_keyword
  n.elements && n.elements.first
end