VisitMap prints a Map type. It is just a passthrough.
(m *proto.Map)
| 62 | |
| 63 | // VisitMap prints a Map type. It is just a passthrough. |
| 64 | func (f *regularFieldsPrinter) VisitMap(m *proto.Map) { |
| 65 | m.SubType.Accept(f) |
| 66 | } |
| 67 | |
| 68 | // VisitPrimitive prints a Primitive type. It stops the recursion. |
| 69 | func (f *regularFieldsPrinter) VisitPrimitive(p *proto.Primitive) { |