summaryrefslogtreecommitdiff
path: root/tool/pure_parser.rb
blob: 20d71079a08a37fcf9518594948ba31f62786c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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')