(base Any)
| 15 | } |
| 16 | |
| 17 | func NewCombiner(base Any) *Combiner { |
| 18 | return &Combiner{base: base} |
| 19 | } |
| 20 | |
| 21 | func (c *Combiner) WrappedError(sctx *super.Context, index []uint32, msg string, inner Any) { |
| 22 | c.Add(index, NewWrappedError(sctx, msg, Pick(inner, index))) |