node/test/message/throw_in_line_with_tabs.js

12 lines
201 B
JavaScript
Raw Normal View History

var common = require('../common');
var assert = require('assert');
console.error('before');
(function () {
// these lines should contain tab!
throw ({ foo: 'bar' });
})();
console.error('after');