CastExpr represents a CAST(expr AS type) expression.
| 1454 | |
| 1455 | // CastExpr represents a CAST(expr AS type) expression. |
| 1456 | type CastExpr struct { |
| 1457 | Expr Expr |
| 1458 | Type *types.T |
| 1459 | |
| 1460 | typeAnnotation |
| 1461 | SyntaxMode castSyntaxMode |
| 1462 | } |
| 1463 | |
| 1464 | // Format implements the NodeFormatter interface. |
| 1465 | func (node *CastExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected