class RubyRunJs::OPCODES::JUMP_IF_TRUE_WITHOUT_POP
Public Instance Methods
eval(ctx)
click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 230 def eval(ctx) val = ctx.stack[-1] if to_boolean(val) return @label end end