Class: FEEL::Conjunction
- Defined in:
- lib/feel/nodes.rb
Overview
-
conjunction = expression , “and” , expression ;
Instance Method Summary collapse
Methods inherited from Node
#qualified_names_in_context, #raise_evaluation_error
Instance Method Details
#eval(context = {}) ⇒ Object
511 512 513 |
# File 'lib/feel/nodes.rb', line 511 def eval(context = {}) head.eval(context) && tail.eval(context) end |