(n ast.Annotations)
| 1557 | } |
| 1558 | |
| 1559 | func (e *encoder) astAnnotations(n ast.Annotations) *ASTAnnotations { |
| 1560 | out := &ASTAnnotations{} |
| 1561 | foreach(n, e.astAnnotation, &out.Annotations) |
| 1562 | return out |
| 1563 | } |
| 1564 | |
| 1565 | func (e *encoder) astAbort(n *ast.Abort) (outID uint64) { |
| 1566 | e.build(&e.instances.AstAbort, e.maps.ASTAbort, n, &outID, func() *ASTAbort { |
no test coverage detected