Function
visitArrayType
(type: o.ArrayType, ctx: EmitterVisitorContext)
Source from the content-addressed store, hash-verified
| 618 | } |
| 619 | |
| 620 | visitArrayType(type: o.ArrayType, ctx: EmitterVisitorContext): void { |
| 621 | if (!this.printTypes) { |
| 622 | return; |
| 623 | } |
| 624 | |
| 625 | ctx.print(null, ': '); |
| 626 | type.of.visitType(this, ctx); |
| 627 | ctx.print(null, '[]'); |
| 628 | } |
| 629 | |
| 630 | visitMapType(type: o.MapType, ctx: EmitterVisitorContext): void { |
| 631 | if (!this.printTypes) { |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…