node/test/message/throw_in_line_with_tabs.js

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');