AnnotateTypeExpr represents a ANNOTATE_TYPE(expr, type) expression.
| 1620 | |
| 1621 | // AnnotateTypeExpr represents a ANNOTATE_TYPE(expr, type) expression. |
| 1622 | type AnnotateTypeExpr struct { |
| 1623 | Expr Expr |
| 1624 | Type *types.T |
| 1625 | |
| 1626 | SyntaxMode annotateSyntaxMode |
| 1627 | } |
| 1628 | |
| 1629 | // Format implements the NodeFormatter interface. |
| 1630 | func (node *AnnotateTypeExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected