fix(animations): fix internal jscompiler issue and AOT quoting (#13798)

CL #143630929
PR Close #13798
This commit is contained in:
Matias Niemelä
2017-01-05 11:14:14 -08:00
committed by Miško Hevery
parent dc63cef10a
commit c2aa981dd6
2 changed files with 6 additions and 3 deletions

View File

@ -402,8 +402,9 @@ function createViewTopLevelStmts(view: CompileView, targetStatements: o.Statemen
o.literal(view.component.template.ngContentSelectors.length),
ViewEncapsulationEnum.fromValue(view.component.template.encapsulation),
view.styles,
o.literalMap(view.animations.map(
(entry): [string, o.Expression] => [entry.name, entry.fnExp])),
o.literalMap(
view.animations.map((entry): [string, o.Expression] => [entry.name, entry.fnExp]),
null, true),
]))
.toDeclStmt(o.importType(createIdentifier(Identifiers.RenderComponentType))));
}