NotExpr represents a NOT expression.
| 2009 | |
| 2010 | // NotExpr represents a NOT expression. |
| 2011 | type NotExpr struct { |
| 2012 | Expr Expr |
| 2013 | } |
| 2014 | |
| 2015 | // Format formats the node. |
| 2016 | func (node *NotExpr) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected