1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Update parser-text.rb with 4ecc13c9cb

This commit is contained in:
Hiroshi SHIBATA 2022-07-29 17:06:18 +09:00
parent b2cc74a50d
commit 4e886d2ade
Notes: git 2022-07-29 19:10:30 +09:00

View file

@ -22,7 +22,7 @@ module Racc
class ParseError < StandardError; end class ParseError < StandardError; end
end end
unless defined?(::ParseError) unless defined?(::ParseError)
ParseError = Racc::ParseError ParseError = Racc::ParseError # :nodoc:
end end
# Racc is a LALR(1) parser generator. # Racc is a LALR(1) parser generator.