-
Notifications
You must be signed in to change notification settings - Fork 50.9k
Closed
Labels
Component: React CompilerStatus: UnconfirmedA potential issue that we haven't yet confirmed as a bugA potential issue that we haven't yet confirmed as a bugType: Bug
Description
What kind of issue is this?
- React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- react-compiler-healthcheck (build issue installing or using the healthcheck script)
Link to repro
Repro steps
const state = {
get doubleValue() {
return 2 * 2;
}
};In the above code, doubleValue uses get syntax, and after compilation, it loses the get keyword and becomes an ordinary function. In this case the compiler should skip compilation until this syntax is supported.
I know that some syntaxes are currently unsupported by the react compiler, can we know what syntaxes are currently unsupported and in process?
How often does this bug happen?
Every time
What version of React are you using?
19.0.0-rc-4c2e457c7c-20240522
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Component: React CompilerStatus: UnconfirmedA potential issue that we haven't yet confirmed as a bugA potential issue that we haven't yet confirmed as a bugType: Bug