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

100% Statements 12/12
100% Branches 0/0
100% Functions 3/3
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  10× 10×   10× 10× 10× 10× 10×          
"use strict";
var ClassPropertyBinder = (function () {
    function ClassPropertyBinder(baseClassPropertyBinder, abstractableBinder) {
        this.baseClassPropertyBinder = baseClassPropertyBinder;
        this.abstractableBinder = abstractableBinder;
    }
    ClassPropertyBinder.prototype.bind = function (def) {
        this.baseClassPropertyBinder.bind(def);
        this.abstractableBinder.bind(def);
        def.kind = this.getKind();
        def.onWriteGetBody = this.getOnWriteGetBody();
        def.onWriteSetBody = this.getOnWriteSetBody();
    };
    return ClassPropertyBinder;
}());
exports.ClassPropertyBinder = ClassPropertyBinder;
 
//# sourceMappingURL=ClassPropertyBinder.js.map