Class: FuncallNode
Overview
:nodoc:
Instance Method Summary collapse
- #evaluate ⇒ Object
-
#initialize(func, args) ⇒ FuncallNode
constructor
A new instance of FuncallNode.
Methods inherited from Node
#excelformulaparser_error, #exec_list
Constructor Details
#initialize(func, args) ⇒ FuncallNode
Returns a new instance of FuncallNode.
544 545 546 547 |
# File 'lib/writeexcel/excelformulaparser.rb', line 544 def initialize(func, args) @func = func @args = args end |
Instance Method Details
#evaluate ⇒ Object
549 550 551 552 553 554 555 |
# File 'lib/writeexcel/excelformulaparser.rb', line 549 def evaluate arg = @args.collect {|i| i.evaluate } out = [] arg.each { |i| o.push i } o.push @func p o end |