(b *scode.Builder, slot uint32)
| 31 | } |
| 32 | |
| 33 | func (m *Map) Serialize(b *scode.Builder, slot uint32) { |
| 34 | off := m.Offsets[slot] |
| 35 | b.BeginContainer() |
| 36 | for end := m.Offsets[slot+1]; off < end; off++ { |
| 37 | m.Keys.Serialize(b, off) |
| 38 | m.Values.Serialize(b, off) |
| 39 | } |
| 40 | b.TransformContainer(super.NormalizeMap) |
| 41 | b.EndContainer() |
| 42 | } |
nothing calls this directly
no test coverage detected