class RubyRunJs::OPCODES::BASE_JUMP

I implemented interpreter in the way that when an integer is returned by eval operation the execution will jump to the location of the label (it is loc = label_locations)

Public Class Methods

new(label) click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 193
def initialize(label)
  @label = label
end