summaryrefslogtreecommitdiff
path: root/tool/pure_parser.rb
blob: 4d5e86e543d0099c68098d8db33420e6d4bba14e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/ruby -pi
BEGIN {
  require_relative 'lib/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')