(abortID uint64)
| 214 | } |
| 215 | |
| 216 | func (d *decoder) abort(abortID uint64) (out *semantic.Abort) { |
| 217 | d.build(d.content.Instances.Abort, &d.inst.Abort, abortID, &out, |
| 218 | func(p *Abort, s *semantic.Abort) { |
| 219 | s.AST = d.astAbort(p.Ast) |
| 220 | s.Function = d.function(p.Function) |
| 221 | s.Statement = d.stat(p.Statement) |
| 222 | }) |
| 223 | return |
| 224 | } |
| 225 | |
| 226 | func (d *decoder) annotation(annotationID uint64) (out *semantic.Annotation) { |
| 227 | d.build(d.content.Instances.Annotation, &d.inst.Annotation, annotationID, &out, |