all files / dist/binders/base/file/ StarImportPartBinder.js

50% Statements 5/10
100% Branches 0/0
33.33% Functions 1/3
50% Lines 5/10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                       
"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