class RubyRunJs::OPCODES::CALL_NO_ARGS
Public Instance Methods
eval(ctx)
click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 667 def eval(ctx) func = ctx.stack.pop() return OPCODES.bytecode_call(ctx, func, ctx.builtin.global, []) end