mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8ffeda041b
file as stdin, because IronRuby 1.1 still doesn't support it. So now we can use ir.exe as BASERUBY. * tool/node_name.rb: read stdin with while gets. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
6 lines
139 B
Ruby
Executable file
6 lines
139 B
Ruby
Executable file
#! ./miniruby
|
|
while gets
|
|
if ~/enum node_type \{/..~/^\};/
|
|
~/(NODE_.+),/ and puts(" case #{$1}:\n\treturn \"#{$1}\";")
|
|
end
|
|
end
|