Class: FuncallNode

Inherits:
Node
  • Object
show all
Defined in:
lib/writeexcel/excelformulaparser.rb

Overview

:nodoc:

Instance Method Summary collapse

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

#evaluateObject



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