summaryrefslogtreecommitdiff
path: root/lib/prism/polyfill/append_as_bytes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/prism/polyfill/append_as_bytes.rb')
-rw-r--r--lib/prism/polyfill/append_as_bytes.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/prism/polyfill/append_as_bytes.rb b/lib/prism/polyfill/append_as_bytes.rb
new file mode 100644
index 0000000000..24218bd171
--- /dev/null
+++ b/lib/prism/polyfill/append_as_bytes.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+# Polyfill for String#append_as_bytes, which didn't exist until Ruby 3.4.
+if !("".respond_to?(:append_as_bytes))
+ String.include(
+ Module.new {
+ def append_as_bytes(*args)
+ args.each do |arg|
+ arg = Integer === arg ? [arg].pack("C") : arg.b
+ self.<<(arg) # steep:ignore
+ end
+ end
+ }
+ )
+end