Class: FEEL::Multiplication
- Defined in:
- lib/feel/nodes.rb
Overview
-
multiplication = expression , “*” , expression ;
Instance Method Summary collapse
Methods inherited from Node
#qualified_names_in_context, #raise_evaluation_error
Instance Method Details
#eval(context = {}) ⇒ Object
285 286 287 |
# File 'lib/feel/nodes.rb', line 285 def eval(context = {}) head.eval(context) * tail.eval(context) end |