class RubyRunJs::OPCODES::LOAD_MEMBER

Public Instance Methods

eval(ctx) click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 443
def eval(ctx)
  prop = ctx.stack.pop()
  obj = ctx.stack.pop()
  ctx.stack.append(get_member(obj, prop, ctx.builtin))
  nil
end