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