(callableID uint64)
| 438 | } |
| 439 | |
| 440 | func (d *decoder) callable(callableID uint64) (out *semantic.Callable) { |
| 441 | d.build(d.content.Instances.Callable, &d.inst.Callable, callableID, &out, |
| 442 | func(p *Callable, s *semantic.Callable) { |
| 443 | s.Function = d.function(p.Function) |
| 444 | s.Object = d.expr(p.Object) |
| 445 | }) |
| 446 | return |
| 447 | } |
| 448 | |
| 449 | func (d *decoder) case_(caseID uint64) (out *semantic.Case) { |
| 450 | d.build(d.content.Instances.Case, &d.inst.Case, caseID, &out, |