Skip to content

Commit 32faf70

Browse files
committed
Provide placeholder names for anonymous functions
1 parent 698f197 commit 32faf70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,13 @@ Test.prototype._assert = function assert (ok, opts) {
237237
if (filem[1].slice(0, dir.length) === dir) {
238238
continue;
239239
}
240-
241-
res.functionName = s[0];
240+
241+
res.functionName = s.length > 1 ? s[0] : '<anonymous>';
242242
res.file = filem[1];
243243
res.line = Number(filem[2]);
244244
if (filem[3]) res.column = filem[3];
245245

246-
res.at = m[1];
246+
res.at = s.length > 1 ? m[1] : '<anonymous> (' + m[1] + ')';
247247
break;
248248
}
249249
}

0 commit comments

Comments
 (0)