--- source: crates/biome_formatter_test/src/snapshot_builder.rs assertion_line: 212 info: js/range/class-declaration.js --- # Input ```js class a { b( ) {} } let x ``` # Prettier differences ```diff --- Prettier +++ Biome @@ -4,4 +4,4 @@ b() {} } -let x; \ No newline at end of file +let x \ No newline at end of file ``` # Output ```js class a { b() {} } let x```