mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
8 changed files with 13 additions and 44 deletions
@ -1,11 +1,11 @@ |
|||||
import Node from '../Node.js'; |
import Node from '../Node.js'; |
||||
|
|
||||
export default class ExportAllDeclaration extends Node { |
export default class ExportAllDeclaration extends Node { |
||||
initialise ( scope ) { |
initialise () { |
||||
this.isExportDeclaration = true; |
this.isExportDeclaration = true; |
||||
} |
} |
||||
|
|
||||
render ( code, es ) { |
render ( code ) { |
||||
code.remove( this.leadingCommentStart || this.start, this.next || this.end ); |
code.remove( this.leadingCommentStart || this.start, this.next || this.end ); |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue