all files / dist/binders/base/class/ ClassConstructorBinder.js

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