all files / dist/binders/base/expression/ ExpressionBinder.js

100% Statements 8/8
100% Branches 0/0
100% Functions 3/3
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  327×   327× 327×          
"use strict";
var ExpressionBinder = (function () {
    function ExpressionBinder(baseDefinitionBinder) {
        this.baseDefinitionBinder = baseDefinitionBinder;
    }
    ExpressionBinder.prototype.bind = function (def) {
        this.baseDefinitionBinder.bind(def);
        def.text = this.getText();
    };
    return ExpressionBinder;
}());
exports.ExpressionBinder = ExpressionBinder;
 
//# sourceMappingURL=ExpressionBinder.js.map