Skip to content

Commit

Permalink
fix(isolated_declarations): fix fixture spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Sep 20, 2024
1 parent 0f96b59 commit ee748b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/oxc_isolated_declarations/tests/fixtures/class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ export class Baz {
/**
* Just a comment
*/
readonly prop1 = 'some string';
readonly prop1 = "some string";
/**
* Just a comment
*/
prop2 = 'another string';
prop2 = "another string";
/**
* Just a comment
*/
private prop3 = 'yet another string';
private prop3 = "yet another string";
/**
* Just a comment
*/
private prop4(): void {}
/**
* Just a comment
*/
private static prop5 = 'yet another string';
private static prop5 = "yet another string";
/**
* Just a comment
*/
Expand Down

0 comments on commit ee748b0

Please sign in to comment.