From 90d38ddb47f557b07b57c88139725267c7c313f8 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Tue, 25 Feb 2025 17:06:16 +0100 Subject: [PATCH] [ruby/prism] Fix merge mishap Caused by https://github.com/ruby/prism/pull/3478 and https://github.com/ruby/prism/pull/3443 I also made the builder reference more explicit to clearly distinquish between `::Parser` and `Prism::Translation::Parser` https://github.com/ruby/prism/commit/d52aaa75b6 --- lib/prism/translation/parser.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/prism/translation/parser.rb b/lib/prism/translation/parser.rb index e9595a5693..5f2f01dbda 100644 --- a/lib/prism/translation/parser.rb +++ b/lib/prism/translation/parser.rb @@ -31,11 +31,6 @@ module Prism end end - # Create the parser with our custom builder class - def initialize(builder = Parser::Builder.new) - super - end - Racc_debug_parser = false # :nodoc: # The `builder` argument is used to create the parser using our custom builder class by default.