mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f4b88959d5
The `lambda_body` grammar rule has a `"}"`, which is throwing off the `exyacc.rb` regular expressions. This changes the regular expression to account for `"}"` as well, which makes the output of `ruby sample/exyacc.rb < parse.y` change by the following diff: ```diff 632,634d631 < ", &@3); < $$ = $2; < } ``` Which makes it closer to a valid EBNF.
20 lines
653 B
Ruby
20 lines
653 B
Ruby
#! /usr/local/bin/ruby -Kn
|
|
# usage: exyacc.rb [yaccfiles]
|
|
# this is covered from exyacc.pl in the camel book
|
|
|
|
ARGF.each(nil) do |source|
|
|
sbeg = source.index("\n%%") + 1
|
|
send = source.rindex("\n%%") + 1
|
|
grammar = source[sbeg, send-sbeg]
|
|
grammar.sub!(/.*\n/, "")
|
|
grammar.gsub!(/'\{'/, "'\001'")
|
|
grammar.gsub!(/["']\}["']/, "'\002'")
|
|
grammar.gsub!(%r{\*/}, "\003\003")
|
|
grammar.gsub!(%r{/\*[^\003]*\003\003}, '')
|
|
while grammar.gsub!(/\{[^{}]*\}/, ''); end
|
|
grammar.gsub!(/'\001'/, "'{'")
|
|
grammar.gsub!(/'\002'/, "'}'")
|
|
while grammar.gsub!(/^[ \t]*\n(\s)/, '\1'); end
|
|
grammar.gsub!(/([:|])[ \t\n]+(\w)/, '\1 \2')
|
|
print grammar
|
|
end
|