class RubyRunJs::OPCODES::JUMP_IF_TRUE
Public Instance Methods
eval(ctx)
click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 208 def eval(ctx) val = ctx.stack.pop() if to_boolean(val) return @label end end