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

100% Statements 12/12
100% Branches 2/2
100% Functions 3/3
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22                   
"use strict";
var ReExportBinder = (function () {
    function ReExportBinder(baseDefinitionBinder) {
        this.baseDefinitionBinder = baseDefinitionBinder;
    }
    ReExportBinder.prototype.bind = function (def) {
        this.baseDefinitionBinder.bind(def);
        def.fileName = this.getFileName();
        def.moduleSpecifier = this.getModuleSpecifier();
        if (this.getIsStarExport()) {
            def.starExports = this.getStarExports();
        }
        else {
            def.namedExports = this.getNamedExports();
        }
    };
    return ReExportBinder;
}());
exports.ReExportBinder = ReExportBinder;
 
//# sourceMappingURL=ReExportBinder.js.map