mirror of https://github.com/lukechilds/rollup.git
4 changed files with 22 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
import Node from '../Node.js'; |
|||
|
|||
export default class Super extends Node { |
|||
call ( context, args ) { |
|||
const classDeclaration = this.findParent( /ClassDeclaration/ ); |
|||
context = 'TODO'; |
|||
classDeclaration.call( context, args ); // TODO call constructor, not the class itself...
|
|||
} |
|||
|
|||
markReturnStatements () { |
|||
// noop?
|
|||
} |
|||
} |
Loading…
Reference in new issue