fix(dart): The Traceur dart transpiler doesn't support shorthand syntax.

This commit is contained in:
Martin Probst
2015-03-31 13:17:37 -07:00
parent aca4604879
commit 54a4e4a67c
3 changed files with 5 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}); }
constructor({lifecycle = []} = {}) { super({lifecycle: lifecycle}); }
}
export function main() {