Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
chore: update snapshots (#4441)
Browse files Browse the repository at this point in the history
  • Loading branch information
nissy-dev authored May 7, 2023
1 parent 174a9be commit b4cfce9
Show file tree
Hide file tree
Showing 39 changed files with 1,207 additions and 95 deletions.
2 changes: 1 addition & 1 deletion crates/rome_formatter_test/src/prettier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start": "node prepare_tests"
},
"dependencies": {
"prettier": "2.8.4"
"prettier": "2.8.8"
},
"devDependencies": {
"@types/prettier": "^2.7.1"
Expand Down
8 changes: 4 additions & 4 deletions crates/rome_formatter_test/src/prettier/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
class {
@decorators[0]
@(decorators[0])
method() {}
},
class {
Expand Down Expand Up @@ -28,25 +28,25 @@
method() {}
},
class {
@decorators[first]
@(decorators[first])
method() {}
},
class {
@decorators [first];
method() {}
},
class {
@decorators["first"]
@(decorators["first"])
method() {}
},
(
@decorators[first]
@(decorators[first])
class {
method() {}
}
),
(
@decorators[0]
@(decorators[0])
class {
method() {}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ info: js/decorators/member-expression.js
@@ -1,54 +1,42 @@
[
class {
- @decorators[0]
- @(decorators[0])
- method() {}
+ @(decorators[0]) method() {}
},
Expand Down Expand Up @@ -108,7 +108,7 @@ info: js/decorators/member-expression.js
method() {}
},
class {
- @decorators[first]
- @(decorators[first])
- method() {}
+ @(decorators["first"]) method() {}
},
Expand All @@ -119,17 +119,17 @@ info: js/decorators/member-expression.js
},
+ @(decorators[0])
class {
- @decorators["first"]
- @(decorators["first"])
method() {}
},
- (
- @decorators[first]
- @(decorators[first])
- class {
- method() {}
- }
- ),
- (
- @decorators[0]
- @(decorators[0])
- class {
- method() {}
- }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export * as ns from 'mod';
export v from 'mod';
export a, * as b from 'mod';
export c, { foo } from 'mod';
export * as d from 'mod';
export { fooooooooooooooooooooooooooooooooooooooooooooooooo } from "fooooooooooooooooooooooooooooo";
export Bar from "barrrrrrrrrrrrrrrrrrrrrrrrrrrr";
export { foooooooooooooooooooooooooooooooooooooooooooooo, fooooooooooooooooooooooooooooooooooooooooooooooo } from "fooooooooooooooooooooooooooooo";
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export * as ns from "mod";
export v from "mod";
export a, * as b from "mod";
export c, { foo } from "mod";
export * as d from "mod";
export { fooooooooooooooooooooooooooooooooooooooooooooooooo } from "fooooooooooooooooooooooooooooo";
export Bar from "barrrrrrrrrrrrrrrrrrrrrrrrrrrr";
export {
foooooooooooooooooooooooooooooooooooooooooooooo,
fooooooooooooooooooooooooooooooooooooooooooooooo,
} from "fooooooooooooooooooooooooooooo";
Loading

0 comments on commit b4cfce9

Please sign in to comment.