node/test/parallel/test-js-stream-call-properties.js
Trevor Norris 178ac3367f js_stream: prevent abort if isalive doesn't exist
Attempting to check IsAlive() on a JSStream before the isAlive()
callback can be set in JS causes a CHECK to fail in MakeCallback.
Instead return false if the callback hasn't been set.

PR-URL: https://github.com/nodejs/node/pull/3282
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
2015-10-08 11:38:21 -06:00

9 lines
223 B
JavaScript

'use strict';
const common = require('../common');
const util = require('util');
const JSStream = process.binding('js_stream').JSStream;
// Testing if will abort when properties are printed.
util.inspect(new JSStream());