Method: CappRuby::RubyBuilder#iseq_stack_pop

Defined in:
lib/cappruby/ruby_builder.rb

#iseq_stack_popObject



188
189
190
191
192
193
194
195
# File 'lib/cappruby/ruby_builder.rb', line 188

def iseq_stack_pop
  iseq = @iseq_stack.last
  @iseq_stack.pop
  @iseq_current = @iseq_stack.last
  # finalize (var locals etc)
  iseq.finalize
  iseq.to_s
end