2016-09-18 13:43:49 +08:00
|
|
|
/* eslint-disable indent, no-tabs */
|
2015-05-19 19:00:06 +08:00
|
|
|
'use strict';
|
2015-12-24 08:02:12 +08:00
|
|
|
require('../common');
|
2012-05-21 23:27:15 +08:00
|
|
|
|
2013-05-22 06:22:05 +08:00
|
|
|
console.error('before');
|
2012-05-21 23:27:15 +08:00
|
|
|
|
2015-05-19 19:00:06 +08:00
|
|
|
(function() {
|
2012-05-21 23:27:15 +08:00
|
|
|
// these lines should contain tab!
|
2017-02-05 03:26:44 +08:00
|
|
|
// eslint-disable-next-line no-throw-literal
|
2012-05-21 23:27:15 +08:00
|
|
|
throw ({ foo: 'bar' });
|
|
|
|
})();
|
|
|
|
|
2013-05-22 06:22:05 +08:00
|
|
|
console.error('after');
|