class RubyRunJs::OPCODES::LOAD_UNDEFINED

Public Instance Methods

eval(ctx) click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 302
def eval(ctx)
  ctx.stack.append(undefined)
  nil
end