class RubyRunJs::OPCODES::LOAD_STRING
Public Class Methods
new(val)
click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 332 def initialize(val) @val = to_string(val) end
Public Instance Methods
eval(ctx)
click to toggle source
# File lib/ruby_run_js/opcodes.rb, line 336 def eval(ctx) ctx.stack.append(@val) nil end