(deferred: DeferredBlock)
| 390 | } |
| 391 | |
| 392 | visitDeferredBlock(deferred: DeferredBlock) { |
| 393 | this.ingestScopedNode(deferred); |
| 394 | deferred.placeholder?.visit(this); |
| 395 | deferred.loading?.visit(this); |
| 396 | deferred.error?.visit(this); |
| 397 | } |
| 398 | |
| 399 | visitDeferredBlockPlaceholder(block: DeferredBlockPlaceholder) { |
| 400 | this.ingestScopedNode(block); |
nothing calls this directly
no test coverage detected