@angular/core 10.2.1 → 10.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v10.2.1
2
+ * @license Angular v10.2.5
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -7864,15 +7864,18 @@ declare interface TView {
7864
7864
  * Array of ngOnInit, ngOnChanges and ngDoCheck hooks that should be executed for this view in
7865
7865
  * creation mode.
7866
7866
  *
7867
- * Even indices: Directive index
7868
- * Odd indices: Hook function
7867
+ * This array has a flat structure and contains TNode indices, directive indices (where an
7868
+ * instance can be found in `LView`) and hook functions. TNode index is followed by the directive
7869
+ * index and a hook function. If there are multiple hooks for a given TNode, the TNode index is
7870
+ * not repeated and the next lifecycle hook information is stored right after the previous hook
7871
+ * function. This is done so that at runtime the system can efficiently iterate over all of the
7872
+ * functions to invoke without having to make any decisions/lookups.
7869
7873
  */
7870
7874
  preOrderHooks: HookData | null;
7871
7875
  /**
7872
7876
  * Array of ngOnChanges and ngDoCheck hooks that should be executed for this view in update mode.
7873
7877
  *
7874
- * Even indices: Directive index
7875
- * Odd indices: Hook function
7878
+ * This array has the same structure as the `preOrderHooks` one.
7876
7879
  */
7877
7880
  preOrderCheckHooks: HookData | null;
7878
7881
  /**
@@ -7954,8 +7957,7 @@ declare interface TView {
7954
7957
  queries: TQueries | null;
7955
7958
  /**
7956
7959
  * An array of indices pointing to directives with content queries alongside with the
7957
- * corresponding
7958
- * query index. Each entry in this array is a tuple of:
7960
+ * corresponding query index. Each entry in this array is a tuple of:
7959
7961
  * - index of the first content query index declared by a given directive;
7960
7962
  * - index of a directive.
7961
7963
  *