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