mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 23:17:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/8643 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@keybase.io>
13 lines
206 B
JavaScript
13 lines
206 B
JavaScript
/* eslint-disable indent, no-tabs */
|
|
'use strict';
|
|
require('../common');
|
|
|
|
console.error('before');
|
|
|
|
(function() {
|
|
// these lines should contain tab!
|
|
throw ({ foo: 'bar' });
|
|
})();
|
|
|
|
console.error('after');
|