TypedInnerExpr returns the NotExpr's inner expression as a TypedExpr.
()
| 259 | |
| 260 | // TypedInnerExpr returns the NotExpr's inner expression as a TypedExpr. |
| 261 | func (node *NotExpr) TypedInnerExpr() TypedExpr { |
| 262 | return node.Expr.(TypedExpr) |
| 263 | } |
| 264 | |
| 265 | // ParenExpr represents a parenthesized expression. |
| 266 | type ParenExpr struct { |