all files / dist/binders/base/general/ CallSignatureBinder.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  27× 27× 27× 27× 27×   27× 27× 27× 27× 27×          
"use strict";
var CallSignatureBinder = (function () {
    function CallSignatureBinder(baseDefinitionBinder, typeParameterBinder, parameterBinder, returnTypedBinder, documentationedBinder) {
        this.baseDefinitionBinder = baseDefinitionBinder;
        this.typeParameterBinder = typeParameterBinder;
        this.parameterBinder = parameterBinder;
        this.returnTypedBinder = returnTypedBinder;
        this.documentationedBinder = documentationedBinder;
    }
    CallSignatureBinder.prototype.bind = function (def) {
        this.baseDefinitionBinder.bind(def);
        this.typeParameterBinder.bind(def);
        this.parameterBinder.bind(def);
        this.returnTypedBinder.bind(def);
        this.documentationedBinder.bind(def);
    };
    return CallSignatureBinder;
}());
exports.CallSignatureBinder = CallSignatureBinder;
 
//# sourceMappingURL=CallSignatureBinder.js.map