VisitReference prints a Reference type. It is just a passthrough.
(r proto.Reference)
| 72 | |
| 73 | // VisitReference prints a Reference type. It is just a passthrough. |
| 74 | func (f *regularFieldsPrinter) VisitReference(r proto.Reference) { |
| 75 | r.SubSchema().Accept(f) |
| 76 | } |
| 77 | |
| 78 | // PrintFields will write the types from schema. |
| 79 | func (f *regularFieldsPrinter) PrintFields(schema proto.Schema) error { |