# # make builtin_binary.inc file. # def dump_bin iseq bin = iseq.to_binary bin.each_byte.with_index{|b, index| print "\n " if (index%20) == 0 print "0x#{'%02x' % b.ord}, " } end ary = [] RubyVM::each_builtin{|feature, iseq| ary << [feature, iseq] } $stdout = open('builtin_binary.inc', 'wb') puts <