From cd516ebd20a8d2c7b0f912e4d5750f84616463a5 Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Thu, 11 Apr 2024 14:37:11 -0400 Subject: [ruby/prism] Add Location#chop https://github.com/ruby/prism/commit/5dd57f4b84 --- lib/prism/desugar_compiler.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/prism/desugar_compiler.rb') diff --git a/lib/prism/desugar_compiler.rb b/lib/prism/desugar_compiler.rb index 8d059b0c98..9b62c00df3 100644 --- a/lib/prism/desugar_compiler.rb +++ b/lib/prism/desugar_compiler.rb @@ -73,6 +73,8 @@ module Prism # Desugar `x += y` to `x = x + y` def compile + operator_loc = node.operator_loc.chop + write_class.new( source, *arguments, @@ -82,8 +84,8 @@ module Prism 0, read_class.new(source, *arguments, node.name_loc), nil, - node.operator_loc.slice.chomp("=").to_sym, - node.operator_loc.copy(length: node.operator_loc.length - 1), + operator_loc.slice.to_sym, + operator_loc, nil, ArgumentsNode.new(source, 0, [node.value], node.value.location), nil, -- cgit v1.2.3