node/test/message/throw_non_error.js
Michaël Zasso e714b5620e test: remove unreachable code
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>
2015-08-21 20:31:11 +10:00

6 lines
131 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
// custom error throwing
throw ({ foo: 'bar' });