You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In strict mode code, assigning to an undeclared global variable must throw a ReferenceError but Boa's runtime evaluates it without any errors.
Describe the bug
In strict mode code, assigning to an undeclared global variable must throw a
ReferenceError
but Boa's runtime evaluates it without any errors.This bug causes assign-to-global-undefined.js in test262 to fail.
To Reproduce
Expected behavior
This should throw a reference error. Instead,
5
is assigned toundeclared
and no error is thrown.Additional context
I'd like to try and find a fix for this. Can you please assign it to me? Thanks!
The text was updated successfully, but these errors were encountered: