-
-
Notifications
You must be signed in to change notification settings - Fork 411
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
[Merged by Bors] - Correct reference error message #1855
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1855 +/- ##
=======================================
Coverage 55.27% 55.27%
=======================================
Files 200 200
Lines 17861 17860 -1
=======================================
Hits 9873 9873
+ Misses 7988 7987 -1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much!
bors r+ |
This Pull Request fixes/closes the incorrect message thrown for the following code: ```javascript "use strict"; foo = "bar"; ``` Which would throw the following before the change (incorrect): `Uncaught "ReferenceError": "binding already exists: foo"` And would throw the following after the change (correct): `Uncaught "ReferenceError": "assignment to undeclared variable foo"`
Pull request successfully merged into main. Build succeeded: |
This Pull Request fixes/closes the incorrect message thrown for the following code:
Which would throw the following before the change (incorrect):
Uncaught "ReferenceError": "binding already exists: foo"
And would throw the following after the change (correct):
Uncaught "ReferenceError": "assignment to undeclared variable foo"