atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
50 lines (38 loc) • 1.84 kB
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
var getServerVersion = _asyncToGenerator(function* () {
return (0, (_nuclideVersion2 || _nuclideVersion()).getVersion)();
}
// Mark this as async so the client can wait for an acknowledgement.
// However, we can't close the connection right away, as otherwise the response never gets sent!
// Add a small delay to allow the return message to go through.
);
exports.getServerVersion = getServerVersion;
var closeConnection = _asyncToGenerator(function* (shutdownServer) {
var client = this;
setTimeout(function () {
(_NuclideServer2 || _NuclideServer()).default.closeConnection(client);
if (shutdownServer) {
(_NuclideServer2 || _NuclideServer()).default.shutdown();
}
}, 1000);
});
exports.closeConnection = closeConnection;
function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { var callNext = step.bind(null, 'next'); var callThrow = step.bind(null, 'throw'); function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(callNext, callThrow); } } callNext(); }); }; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _nuclideVersion2;
function _nuclideVersion() {
return _nuclideVersion2 = require('../../../nuclide-version');
}
var _NuclideServer2;
function _NuclideServer() {
return _NuclideServer2 = _interopRequireDefault(require('../NuclideServer'));
}