--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/range-end.js --- # Input ```js // Unchanged call( 1, 2,3 ); call( 1, 2,3 ); ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,4 +1,7 @@ // Unchanged -call(1, 2, 3); +call( + 1, 2,3 +); + -call(1, 2, 3); +call(1, 2, 3); \ No newline at end of file ``` # Output ```js // Unchanged call( 1, 2,3 ); call(1, 2, 3);```