Class: FEEL::SimplePositiveUnaryTests
- Defined in:
- lib/feel/nodes.rb
Overview
-
simple positive unary tests = simple positive unary test , { “,” , simple positive unary test } ;
Instance Method Summary collapse
Methods inherited from Node
#access_property, #qualified_names_in_context, #raise_evaluation_error
Instance Method Details
#eval(context = {}) ⇒ Object
215 216 217 218 219 220 221 |
# File 'lib/feel/nodes.rb', line 215 def eval(context = {}) tests = [test.eval(context)] more_tests.elements.each do |more_test| tests << more_test.simple_positive_unary_test.eval(context) end tests end |