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
Strict mode is successfully detected when it is at the very top of the file but if you have a comment before it strict mode will not be detected.
Works:
'use strict';
// This program ...
Does not work:
// This program ...
'use strict';
This can be remedied by adding an 'm' modifier to the end of the regular expression in detectStrictMode.js:
Strict mode is successfully detected when it is at the very top of the file but if you have a comment before it strict mode will not be detected.
Works:
Does not work:
This can be remedied by adding an 'm' modifier to the end of the regular expression in detectStrictMode.js:
The text was updated successfully, but these errors were encountered: