module OracleSqlParser::Grammar::Condition::IsOfType::OnlyAndType1

Public Instance Methods

ast() click to toggle source
# File lib/oracle-sql-parser/grammar/condition/is_of_type.rb, line 318
def ast
  OracleSqlParser::Ast::OnlyAndType[
    :only => only_keyword.ast,
    :type => type.ast
  ]
end