-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
C++ errors and JS errors format mismatchΒ #26669
Copy link
Copy link
Closed
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.errorsIssues and PRs related to JavaScript errors originated in Node.js core.Issues and PRs related to JavaScript errors originated in Node.js core.
Metadata
Metadata
Assignees
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.errorsIssues and PRs related to JavaScript errors originated in Node.js core.Issues and PRs related to JavaScript errors originated in Node.js core.
Type
Fields
Give feedbackNo fields configured for issues without a type.
The format of the
nameproperty differs between errors generated by C++ and those generated by JS.For example, JS errors will contain a
namelike'TypeError [ERR_FOO_BAR_BAZ]', while C++ errors will contain anamewith just'TypeError'.It's probably a good idea to have these two match.