-
Notifications
You must be signed in to change notification settings - Fork 31.2k
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
--use-strict flag doesn't apply strict mode to script #30039
Comments
Tested some versions of runtime: test.js file:
Call:
Reproduced at: 12.4, 12.6, 12.8, 12.8.1, 12.12 |
This was caused by b338edb (the switch to |
Fix should be easy. Just change the language mode in ParseInfo depending on FLAG_use_strict. |
@hashseed it looks like it's already done? |
@targos hmm, weird. By that logic, the default should be strict mode. Let me try building and debugging to see what's happening exactly. |
Any news on this? In Node.js v14.7.0 |
An issue was created to re-enable strict mode when running the app. This change re-enabes strict mode. There does seem to be a current [issue](nodejs/node#30039) with Node v14 and strict mode but this change will support the use of it once the bug is fixed. Closes #32
node 18.1 the problem is still there |
Should have some warnings like if(has_cli_flag_use_strict) {
switch(node_running_mode) {
case 'repl':
case 'script':
throw new InValidFlagError("repl and script does not support --use_strict")
case 'stdin':
case 'eval':
// OK with `--use_strict`
break
default:
throw new UnreachableCaseError()
}
} |
The
--use-strict
flag doesn't apply strict mode to script.reproduction:
expected behavior:
ReferenceError: a is not defined
is thrown.behavior:
script executes without any issue.
however it works as expected when node is started first and script is called from repl.
<12 versions aren't affected.
The text was updated successfully, but these errors were encountered: