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