mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2235fad11b
There is no way a line can be called after throwing an exception. PR-URL: https://github.com/nodejs/node/pull/2289 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
// custom error throwing
|
|
throw ({ foo: 'bar' });
|