-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
"Octal literals are not allowed in strict mode." is not a synax error #2684
Labels
v8 engine
Issues and PRs related to the V8 dependency.
Comments
The error comes from V8 not from node. Sadly, there is no |
Oooooookay. |
@tom-- Node.js uses v8 JavaScript engine and the error is thrown when v8 parses your source code. You might want take this up with the v8 project. |
|
This was referenced Mar 11, 2021
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as resolved.
This comment was marked as resolved.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The error message is not technically correct. Octal, hex, decimal etc. are differences in morphology, not syntax. So it is a grammar error and, more specifically, it is a morphology error but it is not a syntax error.
The text was updated successfully, but these errors were encountered: