Class: Nydp::Invocation::Invocation_3
- Defined in:
- lib/nydp/function_invocation.rb
Instance Method Summary collapse
Methods inherited from Base
#handle, #initialize, #inspect, #lexical_reach, #source, #to_s
Methods included from Helper
#cons, #list, #literal?, #pair?, #sig, #sym, #sym?
Methods included from Converter
Constructor Details
This class inherits a constructor from Nydp::Invocation::Base
Instance Method Details
#execute(vm) ⇒ Object
69 70 71 72 73 74 75 76 77 |
# File 'lib/nydp/function_invocation.rb', line 69 def execute vm # Invocation.sig @sig arg_1 = vm.args.pop arg_0 = vm.args.pop f = vm.args.pop f.invoke_3 vm, arg_0, arg_1 rescue StandardError => e handle e, f, :invoke_3, arg_0, arg_1 end |