--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/boundary.js --- # Input ```js foo = 1.0000;bar = 1.0000;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,6 +1,4 @@ -foo = 1.0; -bar = 1.0; -baz = 1.0; +foo = 1.0000;bar = 1.0;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ``` # Output ```js foo = 1.0000;bar = 1.0;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ```