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

100% Statements 11/11
100% Branches 0/0
100% Functions 3/3
100% Lines 11/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  22×   22× 22× 22× 22× 22×          
"use strict";
var NamedImportPartBinder = (function () {
    function NamedImportPartBinder(baseDefinitionBinder) {
        this.baseDefinitionBinder = baseDefinitionBinder;
    }
    NamedImportPartBinder.prototype.bind = function (def) {
        this.baseDefinitionBinder.bind(def);
        def.name = this.getName();
        def.alias = this.getAlias();
        def.definitions = this.getDefinitions();
        def.expression = this.getExpression();
    };
    return NamedImportPartBinder;
}());
exports.NamedImportPartBinder = NamedImportPartBinder;
 
//# sourceMappingURL=NamedImportPartBinder.js.map