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

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