/* IRC-Bot "Kvasir" Copyright (C) 2016 Fenris Wolf (fenris@folksprak.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /** * @author fenris */ type tipo_plenumanto<tipo_rezulto, tipo_kauxzo> = (akcepti : (rezulto : tipo_rezulto)=>void, rifuzi : (kauxzo : tipo_kauxzo)=>void)=>void /** * @author fenris */ function vokado_nenio() : void { } /** * @author fenris */ function vokado_atendi(dependajxoj : Array<(preta : ()=>void)=>void>, ago : ()=>void) : void { if (dependajxoj.length > 0) { dependajxoj[0] ( function () : void { vokado_atendi(dependajxoj.slice(1), ago); } ); } else { ago(); } }