[ruby/prism] Remove need for Natalie patches

https://github.com/ruby/prism/commit/7fc7e13476
This commit is contained in:
Kevin Newton 2024-04-25 13:00:58 -04:00 committed by git
parent 444553b528
commit b6489e9f62

View File

@ -1,7 +1,9 @@
# frozen_string_literal: true
# Polyfill for String#unpack1 with the offset parameter.
if String.instance_method(:unpack1).parameters.none? { |_, name| name == :offset }
# Polyfill for String#unpack1 with the offset parameter. Not all Ruby engines
# have Method#parameters implemented, so we check the arity instead if
# necessary.
if (unpack1 = String.instance_method(:unpack1)).respond_to?(:parameters) ? unpack1.parameters.none? { |_, name| name == :offset } : (unpack1.arity == 1)
String.prepend(
Module.new {
def unpack1(format, offset: 0) # :nodoc: