Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSXv4: Recursive component produces infinite loop #5981

Closed
jeddeloh opened this issue Feb 5, 2023 · 0 comments · Fixed by #5986
Closed

JSXv4: Recursive component produces infinite loop #5981

jeddeloh opened this issue Feb 5, 2023 · 0 comments · Fixed by #5986
Assignees
Milestone

Comments

@jeddeloh
Copy link

jeddeloh commented Feb 5, 2023

It seems adding the rec keyword in combination with @react.component will result in an infinite loop when using JSX v4

@react.component
let rec make = () => {
  React.null
}

compiles to

function make(props) {
  while(true) {
    continue ;
  };
}

export {
  make ,
}
/* No side effect */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants