Method: Nendo::Evaluator#apply
- Defined in:
- lib/nendo/ruby/evaluator.rb
#apply(car, cdr, sourcefile, lineno, locals, sourceInfo, execType) ⇒ Object
624 625 626 627 628 629 630 631 |
# File 'lib/nendo/ruby/evaluator.rb', line 624 def apply( car, cdr, sourcefile, lineno, locals, sourceInfo, execType ) cdr.each { |x| if Cell == x.class x.car = translate( x.car, locals, sourceInfo ) end } execFunc( car, cdr, sourcefile, lineno, locals, sourceInfo, execType ) end |