(cctx *Context, meta Metadata)
| 31 | } |
| 32 | |
| 33 | func under(cctx *Context, meta Metadata) Metadata { |
| 34 | for { |
| 35 | switch inner := meta.(type) { |
| 36 | case *Named: |
| 37 | meta = cctx.Lookup(inner.Values) |
| 38 | default: |
| 39 | return meta |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | type Field struct { |
| 45 | Name string |