--- source: crates/biome_formatter_test/src/snapshot_builder.rs assertion_line: 212 info: js/range/nested3.js --- # Input ```js try { 1;if (condition) { body } } catch (err) {} ``` # Prettier differences ```diff --- Prettier +++ Biome @@ -1,7 +1,7 @@ try { - 1; - if (condition) { - body; - } +1; +if (condition) { + body; +} } catch (err) {} ``` # Output ```js try { 1; if (condition) { body; } } catch (err) {} ```