in lib/kcl/action_handler.js [22:28]
function ActionHandler(ioHandler) {
this._ioHandler = ioHandler;
this._onIOLineCallback = this._onIOLine.bind(this);
this._onIOCloseCallback = this._onIOClose.bind(this);
this._ioHandler.on('line', this._onIOLineCallback);
this._ioHandler.on('close', this._onIOCloseCallback);
}