We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
React.createElement("button", { async onClick() { await foo(); }, *foo() { yield foo(); }, });
https://wakaru.vercel.app/#eNpdjrsOwjAMRX8l8tSiUJU1jIgfYKUMITVVoI2rxDyqqP9OQmHBg3V17pHsCA/0wZIDtZFgqEVQcEBtuDIeNeO+xwEdFw2c78zkGpAiNk4IHSZnBLldb82tKBeY8FNbFheiotxmMsu8Vx/wcyaLffvnzDmChEGPo3UdqAh1eiWd9tO6rq4B5lQi628TwQ4jeQZ1PEnA15Jjklh3Iac0byKTR18=
No response
<button onClick={async () => { await foo(); }} foo={function* () { yield foo(); }} />;
<button onClick={() => { await foo(); }} foo={() => { yield foo(); }} />;
The text was updated successfully, but these errors were encountered:
nice catch. I should revise all of the method related code scanning...
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Input code
Reproduction
https://wakaru.vercel.app/#eNpdjrsOwjAMRX8l8tSiUJU1jIgfYKUMITVVoI2rxDyqqP9OQmHBg3V17pHsCA/0wZIDtZFgqEVQcEBtuDIeNeO+xwEdFw2c78zkGpAiNk4IHSZnBLldb82tKBeY8FNbFheiotxmMsu8Vx/wcyaLffvnzDmChEGPo3UdqAh1eiWd9tO6rq4B5lQi628TwQ4jeQZ1PEnA15Jjklh3Iac0byKTR18=
Steps to reproduce
No response
Expected behavior
Actual behavior
The text was updated successfully, but these errors were encountered: