[ruby/prism] Implement call shorthand for ripper translation

4d08736bd5
This commit is contained in:
Kevin Newton 2024-03-05 21:52:54 -05:00 committed by git
parent 8b721fcd06
commit 75e24a74d9
2 changed files with 7 additions and 7 deletions

View file

@ -646,8 +646,13 @@ module Prism
bounds(node.call_operator_loc) bounds(node.call_operator_loc)
call_operator = visit_token(node.call_operator) call_operator = visit_token(node.call_operator)
bounds(node.message_loc) message =
message = visit_token(node.message) if node.message_loc.nil?
:call
else
bounds(node.message_loc)
visit_token(node.message)
end
if node.name.end_with?("=") && !node.message.end_with?("=") && !node.arguments.nil? && node.block.nil? if node.name.end_with?("=") && !node.message.end_with?("=") && !node.arguments.nil? && node.block.nil?
bounds(node.arguments.location) bounds(node.arguments.location)

View file

@ -55,8 +55,6 @@ module Prism
seattlerb/call_array_lambda_block_call.txt seattlerb/call_array_lambda_block_call.txt
seattlerb/call_assoc_trailing_comma.txt seattlerb/call_assoc_trailing_comma.txt
seattlerb/call_block_arg_named.txt seattlerb/call_block_arg_named.txt
seattlerb/call_colon_parens.txt
seattlerb/call_dot_parens.txt
seattlerb/call_trailing_comma.txt seattlerb/call_trailing_comma.txt
seattlerb/case_in.txt seattlerb/case_in.txt
seattlerb/case_in_else.txt seattlerb/case_in_else.txt
@ -129,11 +127,9 @@ module Prism
seattlerb/rescue_do_end_raised.txt seattlerb/rescue_do_end_raised.txt
seattlerb/rescue_do_end_rescued.txt seattlerb/rescue_do_end_rescued.txt
seattlerb/return_call_assocs.txt seattlerb/return_call_assocs.txt
seattlerb/safe_call_dot_parens.txt
seattlerb/stabby_block_iter_call.txt seattlerb/stabby_block_iter_call.txt
seattlerb/stabby_block_iter_call_no_target_with_arg.txt seattlerb/stabby_block_iter_call_no_target_with_arg.txt
seattlerb/str_lit_concat_bad_encodings.txt seattlerb/str_lit_concat_bad_encodings.txt
seattlerb/thingy.txt
seattlerb/yield_call_assocs.txt seattlerb/yield_call_assocs.txt
single_method_call_with_bang.txt single_method_call_with_bang.txt
spanning_heredoc.txt spanning_heredoc.txt
@ -224,7 +220,6 @@ module Prism
whitequark/ruby_bug_11990.txt whitequark/ruby_bug_11990.txt
whitequark/ruby_bug_15789.txt whitequark/ruby_bug_15789.txt
whitequark/send_block_chain_cmd.txt whitequark/send_block_chain_cmd.txt
whitequark/send_call.txt
whitequark/send_index_cmd.txt whitequark/send_index_cmd.txt
whitequark/send_self.txt whitequark/send_self.txt
whitequark/slash_newline_in_heredocs.txt whitequark/slash_newline_in_heredocs.txt