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