Files
Kmake/test/fixtures/errors/error_with_nul.js

13 lines
223 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
require('../../common');
Error.stackTraceLimit = 2;
function test() {
const a = 'abc\0def';
console.error(a);
throw new Error(a);
}
Object.defineProperty(test, 'name', { value: 'fun\0name' });
test();