--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/boundary-2.js --- # Input ```js function a( ){ a ( ); b ( ); c ( ); d( ); } ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,6 +1,9 @@ -function a() { - a(); - b(); - c(); - d(); +function a( +){ +a ( +); +b(); +c(); d( +); + } ``` # Output ```js function a( ){ a ( ); b(); c(); d( ); } ```