Delete stray file (#33199)
Not sure where this was coming from.
Jan Kassens committed
May 14, 2025 at 11:27 UTC
d85f86cf017151bcf5908d593c3899d876656a01
1 file changed
-47
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/object-method-shorthand-3.expect.md~051f3e57 ([hir] Do not memoize object methods separately)
deleted
-47
@@ -1,47 +0,0 @@
1
-
2
-## Input
3
-
4
-```javascript
5
-import { mutate } from "shared-runtime";
6
-
7
-function Component(a) {
8
- const x = { a };
9
- let obj = {
10
- method() {
11
- mutate(x);
12
- return x;
13
- },
14
- };
15
- return obj.method();
16
-}
17
-
18
-export const FIXTURE_ENTRYPOINT = {
19
- fn: Component,
20
- params: [{ x: 1 }, { a: 2 }, { b: 2 }],
21
-};
22
-
23
-```
24
-
25
-## Code
26
-
27
-```javascript
28
-import { mutate } from "shared-runtime";
29
-
30
-function Component(a) {
31
- const x = { a };
32
- const obj = {
33
- method() {
34
- mutate(x);
35
- return x;
36
- },
37
- };
38
- return obj.method();
39
-}
40
-
41
-export const FIXTURE_ENTRYPOINT = {
42
- fn: Component,
43
- params: [{ x: 1 }, { a: 2 }, { b: 2 }],
44
-};
45
-
46
-```
47
-
\ No newline at end of file