mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
`TNode.directives` was introduced in https://github.com/angular/angular/pull/34938. Turns out that it is unnecessary because the information is already present it `TData` when combining with `TNode.directiveStart` and `TNode.directiveEnd` Mainly this is true (conceptually): ``` expect(tNode.directives).toEqual( tData.slice( tNode.directivesStart, tNode.directivesEnd - tNode.DirectivesStart -1 ) ); ``` The refactoring removes `TNode.directives` and adds `TNode.directiveStyling` as we still need to keep location in the directive in `TNode` PR Close #35050 |
||
|---|---|---|
| .. | ||
| lview_debug_spec.ts | ||
| shared_spec.ts | ||
| styling_spec.ts | ||