@@ -78,7 +78,7 @@ export class NgtRendererStore {
7878 }
7979
8080 if ( state [ NgtRendererClassId . type ] === 'comment' ) {
81- // we attach an arrow function to the Comment node
81+ // NOTE: we attach an arrow function to the Comment node
8282 // In our directives, we can call this function to then start tracking the RendererNode
8383 // this is done to limit the amount of Nodes we need to process for getCreationState
8484 rendererNode [ SPECIAL_INTERNAL_ADD_COMMENT ] = ( node ?: NgtRendererNode ) => {
@@ -319,9 +319,9 @@ export class NgtRendererStore {
319319 }
320320
321321 getCreationState ( ) {
322- const injectedArgs = this . firstNonInjectedDirective ( NgtArgs ) ?. args || [ ] ;
323- const injectedParent = this . firstNonInjectedDirective ( NgtParent ) ?. parent || null ;
324- const store = this . tryGetPortalStore ( ) ;
322+ const injectedArgs = this . # firstNonInjectedDirective( NgtArgs ) ?. args || [ ] ;
323+ const injectedParent = this . # firstNonInjectedDirective( NgtParent ) ?. parent || null ;
324+ const store = this . # tryGetPortalStore( ) ;
325325 return { injectedArgs, injectedParent, store } ;
326326 }
327327
@@ -407,7 +407,7 @@ export class NgtRendererStore {
407407 }
408408 }
409409
410- private firstNonInjectedDirective < T extends NgtCommonDirective > ( dir : Type < T > ) {
410+ # firstNonInjectedDirective< T extends NgtCommonDirective > ( dir : Type < T > ) {
411411 let directive : T | undefined ;
412412
413413 let i = this . #comments. length - 1 ;
@@ -434,7 +434,7 @@ export class NgtRendererStore {
434434 return directive ;
435435 }
436436
437- private tryGetPortalStore ( ) {
437+ # tryGetPortalStore( ) {
438438 let store : NgtStore | undefined ;
439439 // we only care about the portal states because NgtStore only differs per Portal
440440 let i = this . portals . length - 1 ;
0 commit comments