all files / dist/binders/base/function/ FunctionBinder.js

100% Statements 15/15
100% Branches 0/0
100% Functions 3/3
100% Lines 15/15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  23× 23× 23× 23× 23×   23× 23× 23× 23× 23×          
"use strict";
var FunctionBinder = (function () {
    function FunctionBinder(baseFunctionBinder, exportableBinder, ambientableBinder, asyncableBinder, functionBodyWriteableBinder) {
        this.baseFunctionBinder = baseFunctionBinder;
        this.exportableBinder = exportableBinder;
        this.ambientableBinder = ambientableBinder;
        this.asyncableBinder = asyncableBinder;
        this.functionBodyWriteableBinder = functionBodyWriteableBinder;
    }
    FunctionBinder.prototype.bind = function (def) {
        this.baseFunctionBinder.bind(def);
        this.exportableBinder.bind(def);
        this.ambientableBinder.bind(def);
        this.asyncableBinder.bind(def);
        this.functionBodyWriteableBinder.bind(def);
    };
    return FunctionBinder;
}());
exports.FunctionBinder = FunctionBinder;
 
//# sourceMappingURL=FunctionBinder.js.map