(n *semantic.Callable)
| 612 | } |
| 613 | |
| 614 | func (e *encoder) callable(n *semantic.Callable) (outID uint64) { |
| 615 | e.build(&e.instances.Callable, e.maps.Callable, n, &outID, func() *Callable { |
| 616 | return &Callable{ |
| 617 | Object: e.expr(n.Object), |
| 618 | Function: e.function(n.Function), |
| 619 | } |
| 620 | }) |
| 621 | return |
| 622 | } |
| 623 | |
| 624 | func (e *encoder) case_(n *semantic.Case) (outID uint64) { |
| 625 | e.build(&e.instances.Case, e.maps.Case, n, &outID, func() *Case { |