Delete stray file (#33199)

Not sure where this was coming from.
This commit is contained in:
Jan Kassens 2025-05-14 11:27:36 -04:00 committed by GitHub
parent 3a5b326d81
commit d85f86cf01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,47 +0,0 @@
## Input
```javascript
import { mutate } from "shared-runtime";
function Component(a) {
const x = { a };
let obj = {
method() {
mutate(x);
return x;
},
};
return obj.method();
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{ x: 1 }, { a: 2 }, { b: 2 }],
};
```
## Code
```javascript
import { mutate } from "shared-runtime";
function Component(a) {
const x = { a };
const obj = {
method() {
mutate(x);
return x;
},
};
return obj.method();
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{ x: 1 }, { a: 2 }, { b: 2 }],
};
```