| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1× 1× 1× 1× 1× | "use strict";
var StarImportPartBinder = (function () {
function StarImportPartBinder(baseDefinitionBinder) {
this.baseDefinitionBinder = baseDefinitionBinder;
}
StarImportPartBinder.prototype.bind = function (def) {
this.baseDefinitionBinder.bind(def);
def.name = this.getName();
def.definitions = this.getDefinitions();
def.expression = this.getExpression();
};
return StarImportPartBinder;
}());
exports.StarImportPartBinder = StarImportPartBinder;
//# sourceMappingURL=StarImportPartBinder.js.map
|