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

[ruby/racc] Turn debugging off

https://github.com/ruby/racc/commit/872f75cfa7
This commit is contained in:
Marc-Andre Lafortune 2020-08-18 21:26:34 -04:00 committed by Hiroshi SHIBATA
parent 97d1a381e1
commit 245ed57ddc
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 2 additions and 2 deletions

View file

@ -326,7 +326,7 @@ module Racc
# It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
class_eval %{
def yyparse(recv, mid)
#{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
#{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), false)
end
}

View file

@ -324,7 +324,7 @@ module Racc
# It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
class_eval %{
def yyparse(recv, mid)
#{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
#{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), false)
end
}