File indexing completed on 2024-05-19 04:42:03

0001 /*
0002     SPDX-FileCopyrightText: 2014 Denis Steckelmacher <steckdenis@yahoo.fr>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 var event = require("event");
0008 
0009 exports.create = function () { return new Domain(); };
0010 exports.create();
0011 
0012 /*
0013  * exports.Domain
0014  */
0015 function Domain() { return ; }
0016 exports.Domain = Domain;
0017 exports.Domain.prototype = event.EventEmitter;
0018 
0019 exports.Domain.prototype.run = function (fn) { return ; };
0020 exports.Domain.prototype.run(function(){});
0021 
0022 exports.Domain.prototype.members = [];
0023 
0024 exports.Domain.prototype.add = function (emitter) { return ; };
0025 exports.Domain.prototype.add(new Object());
0026 
0027 exports.Domain.prototype.remove = function (emitter) { return ; };
0028 exports.Domain.prototype.remove(new Object());
0029 
0030 exports.Domain.prototype.bind = function (callback) { return function(){}; };
0031 exports.Domain.prototype.bind(function(){});
0032 
0033 exports.Domain.prototype.intercept = function (callback) { return function(){}; };
0034 exports.Domain.prototype.intercept(function(){});
0035 
0036 exports.Domain.prototype.enter = function () { return ; };
0037 exports.Domain.prototype.enter();
0038 
0039 exports.Domain.prototype.exit = function () { return ; };
0040 exports.Domain.prototype.exit();
0041 
0042 exports.Domain.prototype.dispose = function () { return ; };
0043 exports.Domain.prototype.dispose();
0044 
0045