Skip to content

Commit

Permalink
src: fix regression that a source marker is lost
Browse files Browse the repository at this point in the history
PR-URL: #43086
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Coe <bencoe@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
  • Loading branch information
cola119 authored and juanarbol committed Oct 10, 2022
1 parent 72fb013 commit ec1645b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/node_errors.cc
Expand Up @@ -62,7 +62,8 @@ static std::string GetErrorSource(Isolate* isolate,
// added in the JavaScript context:
Environment* env = Environment::GetCurrent(isolate);
const bool has_source_map_url =
!message->GetScriptOrigin().SourceMapUrl().IsEmpty();
!message->GetScriptOrigin().SourceMapUrl().IsEmpty() &&
!message->GetScriptOrigin().SourceMapUrl()->IsUndefined();
if (has_source_map_url && env != nullptr && env->source_maps_enabled()) {
return sourceline;
}
Expand Down
11 changes: 9 additions & 2 deletions test/parallel/test-error-reporting.js
Expand Up @@ -25,8 +25,10 @@ const assert = require('assert');
const exec = require('child_process').exec;
const fixtures = require('../common/fixtures');

function errExec(script, callback) {
const cmd = `"${process.argv[0]}" "${fixtures.path(script)}"`;
function errExec(script, option, callback) {
callback = typeof option === 'function' ? option : callback;
option = typeof option === 'string' ? option : '';
const cmd = `"${process.argv[0]}" ${option} "${fixtures.path(script)}"`;
return exec(cmd, (err, stdout, stderr) => {
// There was some error
assert.ok(err);
Expand Down Expand Up @@ -80,3 +82,8 @@ errExec('throws_error7.js', common.mustCall((err, stdout, stderr) => {
assert.match(stderr,
/throw {\r?\n\^\r?\n{ toString: \[Function: toString] }\r?\n$/);
}));

// Regression tests for https://github.com/nodejs/node/issues/39149
errExec('throws_error7.js', '--enable-source-maps', common.mustCall((err, stdout, stderr) => {
assert.match(stderr, /throw {\r?\n\^\r?\n{ toString: \[Function: toString] }\r?\n$/);
}));

0 comments on commit ec1645b

Please sign in to comment.