2017-01-03 13:16:48 -08:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2016-09-29 17:22:36 -07:00
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
|
|
|
|
let mainFinished = false;
|
|
|
|
|
|
|
|
setImmediate(common.mustCall(function() {
|
|
|
|
assert.strictEqual(mainFinished, true);
|
|
|
|
clearImmediate(immediateB);
|
|
|
|
}));
|
2012-08-07 22:12:01 -04:00
|
|
|
|
2017-02-03 14:54:19 -05:00
|
|
|
const immediateB = setImmediate(common.mustNotCall());
|
2012-08-07 22:12:01 -04:00
|
|
|
|
2017-08-03 18:08:11 -07:00
|
|
|
setImmediate(common.mustCall((...args) => {
|
|
|
|
assert.deepStrictEqual(args, [1, 2, 3]);
|
|
|
|
}), 1, 2, 3);
|
2016-04-27 20:31:59 -04:00
|
|
|
|
2017-08-03 18:08:11 -07:00
|
|
|
setImmediate(common.mustCall((...args) => {
|
|
|
|
assert.deepStrictEqual(args, [1, 2, 3, 4, 5]);
|
|
|
|
}), 1, 2, 3, 4, 5);
|
2016-09-29 17:22:36 -07:00
|
|
|
|
|
|
|
mainFinished = true;
|