When the memberVariables option in traceur is enabled I get the following exception: ``` Uncaught exception: [ 'annotations.js:29:3: Constructors of derived class must contain a super call when the memberVariables option is enabled' ] ``` Tested with (Options: --annotations --types --member-variables): ``` js import {Injector, Inject} from "di/src"; [...] ``` This would fix the problem: ``` js [...] class InjectPromise extends Inject { constructor(...tokens) { super(...tokens); this.isPromise = true; this.isLazy = false; } } [...] ```
When the memberVariables option in traceur is enabled I get the following exception:
Tested with (Options: --annotations --types --member-variables):
This would fix the problem: