class RubyRunJs::OPCODES::CALL

Public Instance Methods

eval(ctx) click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 628
def eval(ctx)
  args = ctx.stack.pop()
  func = ctx.stack.pop()
  return OPCODES.bytecode_call(ctx, func, ctx.builtin.global, args)
end