ParenExpr represents a parenthesized expression.
| 443 | |
| 444 | // ParenExpr represents a parenthesized expression. |
| 445 | type ParenExpr struct { |
| 446 | Expr Expr |
| 447 | ExprType Type // used for type casting |
| 448 | } |
| 449 | |
| 450 | // Type returns the type. |
| 451 | func (e *ParenExpr) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected