MCPcopy
hub / github.com/angular/angular / DeferredBlockLoading

Class DeferredBlockLoading

packages/compiler/src/render3/r3_ast.ts:306–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304}
305
306export class DeferredBlockLoading extends BlockNode implements Node {
307 constructor(
308 public children: Node[],
309 public afterTime: number | null,
310 public minimumTime: number | null,
311 nameSpan: ParseSourceSpan,
312 sourceSpan: ParseSourceSpan,
313 startSourceSpan: ParseSourceSpan,
314 endSourceSpan: ParseSourceSpan | null,
315 public i18n?: I18nMeta,
316 ) {
317 super(nameSpan, sourceSpan, startSourceSpan, endSourceSpan);
318 }
319
320 visit<Result>(visitor: Visitor<Result>): Result {
321 return visitor.visitDeferredBlockLoading(this);
322 }
323}
324
325export class DeferredBlockError extends BlockNode implements Node {
326 constructor(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…