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
Consider the following sample (I know it is not a meaningful piece of code, but it's the easiest case to reproduce):
index.ts
export function check(value: number) { return 3 < value >>> 0; }
esbuild index.ts
Output with 0.14.36
export function check(value) { return 3 < value >>> 0; }
Output with 0.14.37
export function check(value) { return 3 >> 0; }
The text was updated successfully, but these errors were encountered:
Thanks for the report. I'll work on figuring out what to do here.
Sorry, something went wrong.
1a57168
fix #2201: update instantiation expression parsing
64a6388
fix #2907 instead of #2201
46a6673
No branches or pull requests
Consider the following sample (I know it is not a meaningful piece of code, but it's the easiest case to reproduce):
index.ts
Output with 0.14.36
Output with 0.14.37
The text was updated successfully, but these errors were encountered: