From: "ko1 (Koichi Sasada)" Date: 2013-09-30T20:27:28+09:00 Subject: [ruby-core:57488] [ruby-trunk - Bug #7995] RubyVM::InstructionSequence to_a not working for blocks Issue #7995 has been updated by ko1 (Koichi Sasada). Category set to YARV Target version set to current: 2.1.0 ruby -v set to - ---------------------------------------- Bug #7995: RubyVM::InstructionSequence to_a not working for blocks https://bugs.ruby-lang.org/issues/7995#change-42101 Author: mmeltner (Michael Meltner) Status: Assigned Priority: Normal Assignee: ko1 (Koichi Sasada) Category: YARV Target version: current: 2.1.0 ruby -v: - Backport: Hello, I try to convert this code into an array via RubyVM::InstructionSequence: ----- def test yield end test do puts "hi there" end ----- then read it back via "iseq_s_load". This causes an error that there is no block defined: :in `test': no block given (yield) (LocalJumpError) from :in `' I assume there is a bug in iseq.c, line 1778: rb_hash_aset(e, ID2SYM(rb_intern("blockptr")), ci->blockiseq ? seq_data_to_ary(ci->blockiseq) : Qnil); as the corresponding line in compile.c is this: VALUE vblock = rb_hash_aref(op, ID2SYM(rb_intern("block"))); so is the symbol name mixed up between "block" and "blockptr" ? - Michael -- http://bugs.ruby-lang.org/