-
Notifications
You must be signed in to change notification settings - Fork 47.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[compiler] Override type provider for hook-like names
If an imported name is hook-like but a type provider provides a non-hook type, we now override the returned value and treat it as a generic custom hook. This is meant as an extra check to prevent miscompilation. ghstack-source-id: 28539db58d530c332fe0af1c9b58e7455484613d Pull Request resolved: #30868
- Loading branch information
1 parent
e56f4ae
commit 340959c
Showing
9 changed files
with
500 additions
and
14 deletions.
There are no files selected for viewing
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
123 changes: 123 additions & 0 deletions
123
...ixtures/compiler/type-provider-hooklike-name-not-typed-as-hook-import.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,123 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
import {useMemo} from 'react'; | ||
import { | ||
useArrayConcatNotTypedAsHook, | ||
ValidateMemoization, | ||
} from 'shared-runtime'; | ||
|
||
export function Component({a, b}) { | ||
const item1 = useMemo(() => [a], [a]); | ||
const item2 = useMemo(() => [b], [b]); | ||
const item3 = useArrayConcatNotTypedAsHook(item1, item2); | ||
|
||
return ( | ||
<> | ||
<ValidateMemoization inputs={[a, b]} output={item3} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{a: 0, b: 0}], | ||
sequentialRenders: [ | ||
{a: 0, b: 0}, | ||
{a: 1, b: 0}, | ||
{a: 1, b: 1}, | ||
{a: 1, b: 2}, | ||
{a: 2, b: 2}, | ||
{a: 3, b: 2}, | ||
{a: 0, b: 0}, | ||
], | ||
}; | ||
|
||
``` | ||
|
||
## Code | ||
|
||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; | ||
import { useMemo } from "react"; | ||
import { | ||
useArrayConcatNotTypedAsHook, | ||
ValidateMemoization, | ||
} from "shared-runtime"; | ||
|
||
export function Component(t0) { | ||
const $ = _c(10); | ||
const { a, b } = t0; | ||
let t1; | ||
let t2; | ||
if ($[0] !== a) { | ||
t2 = [a]; | ||
$[0] = a; | ||
$[1] = t2; | ||
} else { | ||
t2 = $[1]; | ||
} | ||
t1 = t2; | ||
const item1 = t1; | ||
let t3; | ||
let t4; | ||
if ($[2] !== b) { | ||
t4 = [b]; | ||
$[2] = b; | ||
$[3] = t4; | ||
} else { | ||
t4 = $[3]; | ||
} | ||
t3 = t4; | ||
const item2 = t3; | ||
const item3 = useArrayConcatNotTypedAsHook(item1, item2); | ||
let t5; | ||
if ($[4] !== a || $[5] !== b) { | ||
t5 = [a, b]; | ||
$[4] = a; | ||
$[5] = b; | ||
$[6] = t5; | ||
} else { | ||
t5 = $[6]; | ||
} | ||
let t6; | ||
if ($[7] !== t5 || $[8] !== item3) { | ||
t6 = ( | ||
<> | ||
<ValidateMemoization inputs={t5} output={item3} /> | ||
</> | ||
); | ||
$[7] = t5; | ||
$[8] = item3; | ||
$[9] = t6; | ||
} else { | ||
t6 = $[9]; | ||
} | ||
return t6; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{ a: 0, b: 0 }], | ||
sequentialRenders: [ | ||
{ a: 0, b: 0 }, | ||
{ a: 1, b: 0 }, | ||
{ a: 1, b: 1 }, | ||
{ a: 1, b: 2 }, | ||
{ a: 2, b: 2 }, | ||
{ a: 3, b: 2 }, | ||
{ a: 0, b: 0 }, | ||
], | ||
}; | ||
|
||
``` | ||
### Eval output | ||
(kind: ok) <div>{"inputs":[0,0],"output":[0,0]}</div> | ||
<div>{"inputs":[1,0],"output":[1,0]}</div> | ||
<div>{"inputs":[1,1],"output":[1,1]}</div> | ||
<div>{"inputs":[1,2],"output":[1,2]}</div> | ||
<div>{"inputs":[2,2],"output":[2,2]}</div> | ||
<div>{"inputs":[3,2],"output":[3,2]}</div> | ||
<div>{"inputs":[0,0],"output":[0,0]}</div> |
31 changes: 31 additions & 0 deletions
31
.../src/__tests__/fixtures/compiler/type-provider-hooklike-name-not-typed-as-hook-import.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,31 @@ | ||
import {useMemo} from 'react'; | ||
import { | ||
useArrayConcatNotTypedAsHook, | ||
ValidateMemoization, | ||
} from 'shared-runtime'; | ||
|
||
export function Component({a, b}) { | ||
const item1 = useMemo(() => [a], [a]); | ||
const item2 = useMemo(() => [b], [b]); | ||
const item3 = useArrayConcatNotTypedAsHook(item1, item2); | ||
|
||
return ( | ||
<> | ||
<ValidateMemoization inputs={[a, b]} output={item3} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{a: 0, b: 0}], | ||
sequentialRenders: [ | ||
{a: 0, b: 0}, | ||
{a: 1, b: 0}, | ||
{a: 1, b: 1}, | ||
{a: 1, b: 2}, | ||
{a: 2, b: 2}, | ||
{a: 3, b: 2}, | ||
{a: 0, b: 0}, | ||
], | ||
}; |
110 changes: 110 additions & 0 deletions
110
...xtures/compiler/type-provider-import-object-typed-module-as-hook-name.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,110 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
import {useMemo} from 'react'; | ||
import useHook from 'shared-runtime'; | ||
|
||
export function Component({a, b}) { | ||
const item1 = useMemo(() => ({a}), [a]); | ||
const item2 = useMemo(() => ({b}), [b]); | ||
useHook(item1, item2); | ||
|
||
return ( | ||
<> | ||
<ValidateMemoization inputs={[a]} output={item1} /> | ||
<ValidateMemoization inputs={[b]} output={item2} /> | ||
</> | ||
); | ||
} | ||
|
||
``` | ||
|
||
## Code | ||
|
||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; | ||
import { useMemo } from "react"; | ||
import useHook from "shared-runtime"; | ||
|
||
export function Component(t0) { | ||
const $ = _c(17); | ||
const { a, b } = t0; | ||
let t1; | ||
let t2; | ||
if ($[0] !== a) { | ||
t2 = { a }; | ||
$[0] = a; | ||
$[1] = t2; | ||
} else { | ||
t2 = $[1]; | ||
} | ||
t1 = t2; | ||
const item1 = t1; | ||
let t3; | ||
let t4; | ||
if ($[2] !== b) { | ||
t4 = { b }; | ||
$[2] = b; | ||
$[3] = t4; | ||
} else { | ||
t4 = $[3]; | ||
} | ||
t3 = t4; | ||
const item2 = t3; | ||
useHook(item1, item2); | ||
let t5; | ||
if ($[4] !== a) { | ||
t5 = [a]; | ||
$[4] = a; | ||
$[5] = t5; | ||
} else { | ||
t5 = $[5]; | ||
} | ||
let t6; | ||
if ($[6] !== t5 || $[7] !== item1) { | ||
t6 = <ValidateMemoization inputs={t5} output={item1} />; | ||
$[6] = t5; | ||
$[7] = item1; | ||
$[8] = t6; | ||
} else { | ||
t6 = $[8]; | ||
} | ||
let t7; | ||
if ($[9] !== b) { | ||
t7 = [b]; | ||
$[9] = b; | ||
$[10] = t7; | ||
} else { | ||
t7 = $[10]; | ||
} | ||
let t8; | ||
if ($[11] !== t7 || $[12] !== item2) { | ||
t8 = <ValidateMemoization inputs={t7} output={item2} />; | ||
$[11] = t7; | ||
$[12] = item2; | ||
$[13] = t8; | ||
} else { | ||
t8 = $[13]; | ||
} | ||
let t9; | ||
if ($[14] !== t6 || $[15] !== t8) { | ||
t9 = ( | ||
<> | ||
{t6} | ||
{t8} | ||
</> | ||
); | ||
$[14] = t6; | ||
$[15] = t8; | ||
$[16] = t9; | ||
} else { | ||
t9 = $[16]; | ||
} | ||
return t9; | ||
} | ||
|
||
``` | ||
### Eval output | ||
(kind: exception) Fixture not implemented |
15 changes: 15 additions & 0 deletions
15
.../src/__tests__/fixtures/compiler/type-provider-import-object-typed-module-as-hook-name.js
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,15 @@ | ||
import {useMemo} from 'react'; | ||
import useHook from 'shared-runtime'; | ||
|
||
export function Component({a, b}) { | ||
const item1 = useMemo(() => ({a}), [a]); | ||
const item2 = useMemo(() => ({b}), [b]); | ||
useHook(item1, item2); | ||
|
||
return ( | ||
<> | ||
<ValidateMemoization inputs={[a]} output={item1} /> | ||
<ValidateMemoization inputs={[b]} output={item2} /> | ||
</> | ||
); | ||
} |
Oops, something went wrong.