Class: FEEL::List
- Defined in:
- lib/feel/nodes.rb
Overview
-
list = “[” [ expression , { “,” , expression } ] , “]” ;
Instance Method Summary collapse
Methods inherited from Node
#access_property, #qualified_names_in_context, #raise_evaluation_error
Instance Method Details
#eval(context = {}) ⇒ Object
677 678 679 680 681 682 683 684 |
# File 'lib/feel/nodes.rb', line 677 def eval(context = {}) return [] unless defined?(list_entries) if list_entries.present? list_entries.eval(context) else [] end end |