fix(compiler): don’t throw for empty array literal in assignments (#14878)

Closes #14782
This commit is contained in:
Tobias Bosch
2017-03-06 17:01:45 -08:00
committed by Chuck Jazdzewski
parent 6bc6482765
commit 6cd3326b55
2 changed files with 9 additions and 1 deletions

View File

@ -619,6 +619,14 @@ export function main() {
expect(ctx.componentInstance.a).toEqual(2);
}));
it('should support empty literals', fakeAsync(() => {
const ctx = _bindSimpleProp('(event)="a=[{},[]]"');
const childEl = ctx.debugElement.children[0];
childEl.triggerEventHandler('event', 'EVENT');
expect(ctx.componentInstance.a).toEqual([{}, []]);
}));
it('should throw when trying to assign to a local', fakeAsync(() => {
expect(() => {
_bindSimpleProp('(event)="$event=1"');