-
Notifications
You must be signed in to change notification settings - Fork 46.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ghstack-poisoned]
- Loading branch information
Showing
3 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
...ompiler/src/__tests__/fixtures/compiler/bug-invalid-phi-as-dependency.expect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
import { CONST_TRUE, Stringify, setProperty } from "shared-runtime"; | ||
|
||
function Component({arg}) { | ||
const obj = CONST_TRUE ? {inner: {value: "hello"}} : null; | ||
const boxedInner = [obj?.inner]; | ||
useHook(); | ||
setProperty(obj, arg); | ||
if (boxedInner[0] !== obj?.inner) { | ||
throw new Error("invariant broken"); | ||
} | ||
return <Stringify obj={obj} inner={boxedInner} />; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{arg: 0}], | ||
sequentialRenders: [{arg: 0}, {arg: 1}] | ||
} | ||
|
||
``` | ||
## Code | ||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; | ||
import { CONST_TRUE, Stringify, setProperty } from "shared-runtime"; | ||
|
||
function Component(t0) { | ||
const $ = _c(5); | ||
const { arg } = t0; | ||
const obj = CONST_TRUE ? { inner: { value: "hello" } } : null; | ||
const t1 = obj?.inner; | ||
let t2; | ||
if ($[0] !== t1) { | ||
t2 = [t1]; | ||
$[0] = t1; | ||
$[1] = t2; | ||
} else { | ||
t2 = $[1]; | ||
} | ||
const boxedInner = t2; | ||
useHook(); | ||
setProperty(obj, arg); | ||
if (boxedInner[0] !== obj?.inner) { | ||
throw new Error("invariant broken"); | ||
} | ||
let t3; | ||
if ($[2] !== obj || $[3] !== boxedInner) { | ||
t3 = <Stringify obj={obj} inner={boxedInner} />; | ||
$[2] = obj; | ||
$[3] = boxedInner; | ||
$[4] = t3; | ||
} else { | ||
t3 = $[4]; | ||
} | ||
return t3; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{ arg: 0 }], | ||
sequentialRenders: [{ arg: 0 }, { arg: 1 }], | ||
}; | ||
|
||
``` | ||
### Eval output | ||
(kind: ok) [[ (exception in render) ReferenceError: useHook is not defined ]] | ||
[[ (exception in render) ReferenceError: useHook is not defined ]] |
30 changes: 30 additions & 0 deletions
30
...l-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-invalid-phi-as-dependency.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { CONST_TRUE, Stringify, mutate, useIdentity } from "shared-runtime"; | ||
|
||
/** | ||
* Fixture showing an edge case for ReactiveScope variable propagation. | ||
* | ||
* Found differences in evaluator results | ||
* Non-forget (expected): | ||
* <div>{"obj":{"inner":{"value":"hello"},"wat0":"joe"},"inner":["[[ cyclic ref *2 ]]"]}</div> | ||
* <div>{"obj":{"inner":{"value":"hello"},"wat0":"joe"},"inner":["[[ cyclic ref *2 ]]"]}</div> | ||
* Forget: | ||
* <div>{"obj":{"inner":{"value":"hello"},"wat0":"joe"},"inner":["[[ cyclic ref *2 ]]"]}</div> | ||
* [[ (exception in render) Error: invariant broken ]] | ||
* | ||
*/ | ||
function Component() { | ||
const obj = CONST_TRUE ? {inner: {value: "hello"}} : null; | ||
const boxedInner = [obj?.inner]; | ||
useIdentity(null); | ||
mutate(obj); | ||
if (boxedInner[0] !== obj?.inner) { | ||
throw new Error("invariant broken"); | ||
} | ||
return <Stringify obj={obj} inner={boxedInner} />; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{arg: 0}], | ||
sequentialRenders: [{arg: 0}, {arg: 1}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters