1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/pure_parser.rb
Nobuyoshi Nakada a064e46762
Support Bison 3
2019-06-17 03:09:52 +09:00

15 lines
333 B
Ruby
Executable file

#!/usr/bin/ruby -pi
BEGIN {
require_relative 'colorize'
colorize = Colorize.new
file = ARGV.shift
unless /\Abison .* (\d+)\.\d+/ =~ IO.popen(ARGV+%w[--version], &:read)
puts colorize.fail("not bison")
exit
end
exit if $1.to_i >= 3
ARGV.clear
ARGV.push(file)
}
$_.sub!(/^%define\s+api\.pure/, '%pure-parser')