File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -287,6 +287,12 @@ pipeline_tests(
287287 "testdata/**/*.exp" ,
288288 ],
289289 exclude = [
290+ # Prism allows a new line between `.` and `end` as a way to call a method called literally `#end`.
291+ # The legacy parser treats this as an incomplete call to `x.<method-name-missing>()`, which is much
292+ # nicer behaviour, which we eventually want to support with Prism as well.
293+ # https://github.com/Shopify/sorbet/issues/739
294+ "testdata/lsp/completion/missing_fun.rb" ,
295+
290296 # Tests having to do with tree differences in invalid Ruby code; will address later
291297 "testdata/parser/error_recovery/assign.rb" ,
292298 "testdata/parser/error_recovery/begin_1.rb" ,
@@ -568,6 +574,7 @@ pipeline_tests(
568574 "prism_regression/call_implicit_kw_args.rb" ,
569575 "prism_regression/literal_hash.rb" ,
570576 "prism_regression/multi_target.rb" ,
577+ "prism_regression/call_block_param.rb" ,
571578 ],
572579 ),
573580 "PrismPosTests" ,
You can’t perform that action at this time.
0 commit comments