mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Prettify builtin_binary format
This commit is contained in:
parent
cd706c5216
commit
88b9a0f7fe
1 changed files with 5 additions and 4 deletions
|
@ -5,9 +5,10 @@
|
|||
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}, "
|
||||
print "\n " if (index%20) == 0
|
||||
print " 0x#{'%02x' % b.ord},"
|
||||
}
|
||||
print "\n"
|
||||
end
|
||||
|
||||
ary = []
|
||||
|
@ -25,12 +26,12 @@ puts <<H
|
|||
H
|
||||
|
||||
ary.each{|feature, iseq|
|
||||
puts "static const unsigned char #{feature}_bin[] = {"
|
||||
print "\n""static const unsigned char #{feature}_bin[] = {"
|
||||
dump_bin(iseq)
|
||||
puts "};"
|
||||
}
|
||||
|
||||
puts "static const struct builtin_binary builtin_binary[] = {"
|
||||
print "\n""static const struct builtin_binary builtin_binary[] = {\n"
|
||||
ary.each{|feature, iseq|
|
||||
puts " {#{feature.dump}, #{feature}_bin, sizeof(#{feature}_bin)},"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue