fix(build): Actually code in the subset of JS that Traceur-Dart supports.

This commit is contained in:
Martin Probst
2015-03-31 16:08:16 -07:00
parent adab6c0728
commit eb7b7581ca
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import {ddescribe, describe, it, iit, expect, beforeEach} from 'angular2/test_li
import {Directive, onChange} from 'angular2/src/core/annotations/annotations';
class DummyDirective extends Directive {
constructor({lifecycle = []} = {}) { super({lifecycle: lifecycle}); }
constructor({lifecycle} = {}) { super({lifecycle: lifecycle}); }
}
export function main() {