Class: Query::Parser::Statement
- Defined in:
- lib/query/parser/statement.rb
Instance Method Summary collapse
Instance Method Details
#root ⇒ Object
6 7 8 9 10 |
# File 'lib/query/parser/statement.rb', line 6 def root ( Whitespace.maybe << NotOperator.aka(:not) << Whitespace.maybe ).maybe << (Group | KeyValue | String) end |