Class: SearchCopGrammar::OrExpression
- Inherits:
-
BaseNode
- Object
- Treetop::Runtime::SyntaxNode
- BaseNode
- SearchCopGrammar::OrExpression
show all
- Defined in:
- lib/search_cop_grammar.rb
Instance Attribute Summary
Attributes inherited from BaseNode
#query_info, #query_options
Instance Method Summary
collapse
Methods inherited from BaseNode
#collection_for, #elements
Instance Method Details
#evaluate ⇒ Object
124
125
126
|
# File 'lib/search_cop_grammar.rb', line 124
def evaluate
[elements.first.evaluate, elements.last.evaluate].inject(:or)
end
|