(b scode.Bytes)
| 101 | } |
| 102 | |
| 103 | func (u *Unflatten) decodeKey(b scode.Bytes) field.Path { |
| 104 | u.path = u.path[:0] |
| 105 | for it := b.Iter(); !it.Done(); { |
| 106 | u.path = append(u.path, super.DecodeString(it.Next())) |
| 107 | } |
| 108 | return u.path |
| 109 | } |
| 110 | |
| 111 | type recordCache struct { |
| 112 | index int |
no test coverage detected