CastExpr represents a CAST(expr AS type) expression.
| 1505 | |
| 1506 | // CastExpr represents a CAST(expr AS type) expression. |
| 1507 | type CastExpr struct { |
| 1508 | Expr Expr |
| 1509 | Type ResolvableTypeReference |
| 1510 | |
| 1511 | typeAnnotation |
| 1512 | SyntaxMode castSyntaxMode |
| 1513 | } |
| 1514 | |
| 1515 | // Format implements the NodeFormatter interface. |
| 1516 | func (node *CastExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected