feat(ivy): memoize array literals in render3 (#21973)

PR Close #21973
This commit is contained in:
Kara Erickson
2018-02-01 12:13:23 -08:00
committed by Alex Rickabaugh
parent 7e51e52f55
commit 4d62be69c5
6 changed files with 618 additions and 1 deletions

View File

@ -259,6 +259,9 @@ export interface TView {
* Odd indices: Hook function
*/
destroyHooks: HookData|null;
/** Contains copies of object literals that were passed as bindings in this view. */
objectLiterals: any[]|null;
}
/**