replaceWith(name){
        invariant(name,'You must provide a valid replacement module');
        invariant(this._declarationInProgress,'You must call "for" before calling "replaceWith"');
        this._declarationInProgress.replaceWith = name;
        return this;