| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 327× 1× 327× 327× 1× 1× | "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
|