Class: Query::Parser::Special

Inherits:
Language
  • Object
show all
Defined in:
lib/query/parser/special.rb

Instance Method Summary collapse

Instance Method Details

#rootObject



6
7
8
9
# File 'lib/query/parser/special.rb', line 6

def root
  str("&") | str("|") | str("(") | str(")") | str("...") | str("..") |
    Whitespace
end