mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/44197 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Michaël Zasso <targos@protonmail.com>
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
// Flags: --enable-source-maps
|
|
|
|
'use strict';
|
|
require('../common');
|
|
Error.stackTraceLimit = 3;
|
|
|
|
const fs = require('fs');
|
|
|
|
const content = fs.readFileSync(require.resolve('../fixtures/source-map/tabs.js'), 'utf8');
|
|
eval(content);
|