(astCallID uint64)
| 1463 | } |
| 1464 | |
| 1465 | func (d *decoder) astCall(astCallID uint64) (out *ast.Call) { |
| 1466 | d.build(d.content.Instances.AstCall, &d.inst.ASTCall, astCallID, &out, |
| 1467 | func(p *ASTCall, s *ast.Call) { |
| 1468 | s.Target = d.astNode(p.Target) |
| 1469 | foreach(p.Arguments, d.astNode, &s.Arguments) |
| 1470 | }) |
| 1471 | return |
| 1472 | } |
| 1473 | |
| 1474 | func (d *decoder) astCase(astCaseID uint64) (out *ast.Case) { |
| 1475 | d.build(d.content.Instances.AstCase, &d.inst.ASTCase, astCaseID, &out, |