all files / dist/binders/base/variable/ VariableBinder.js

100% Statements 20/20
100% Branches 0/0
100% Functions 3/3
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27  24× 24× 24× 24× 24× 24× 24×   24× 24× 24× 24× 24× 24× 24× 24×          
"use strict";
var VariableBinder = (function () {
    function VariableBinder(baseDefinitionBinder, namedBinder, exportableBinder, ambientableBinder, typedBinder, defaultExpressionedBinder, documentationedBinder) {
        this.baseDefinitionBinder = baseDefinitionBinder;
        this.namedBinder = namedBinder;
        this.exportableBinder = exportableBinder;
        this.ambientableBinder = ambientableBinder;
        this.typedBinder = typedBinder;
        this.defaultExpressionedBinder = defaultExpressionedBinder;
        this.documentationedBinder = documentationedBinder;
    }
    VariableBinder.prototype.bind = function (def) {
        this.baseDefinitionBinder.bind(def);
        this.namedBinder.bind(def);
        this.exportableBinder.bind(def);
        this.ambientableBinder.bind(def);
        this.typedBinder.bind(def);
        this.defaultExpressionedBinder.bind(def);
        this.documentationedBinder.bind(def);
        def.declarationType = this.getDeclarationType();
    };
    return VariableBinder;
}());
exports.VariableBinder = VariableBinder;
 
//# sourceMappingURL=VariableBinder.js.map