MCPcopy
hub / github.com/angular/angular / DeferredBlockPlaceholder

Class DeferredBlockPlaceholder

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

Source from the content-addressed store, hash-verified

286}
287
288export class DeferredBlockPlaceholder extends BlockNode implements Node {
289 constructor(
290 public children: Node[],
291 public minimumTime: number | null,
292 nameSpan: ParseSourceSpan,
293 sourceSpan: ParseSourceSpan,
294 startSourceSpan: ParseSourceSpan,
295 endSourceSpan: ParseSourceSpan | null,
296 public i18n?: I18nMeta,
297 ) {
298 super(nameSpan, sourceSpan, startSourceSpan, endSourceSpan);
299 }
300
301 visit<Result>(visitor: Visitor<Result>): Result {
302 return visitor.visitDeferredBlockPlaceholder(this);
303 }
304}
305
306export class DeferredBlockLoading extends BlockNode implements Node {
307 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…