SelectExpr represents a SELECT expression.
| 149 | |
| 150 | // SelectExpr represents a SELECT expression. |
| 151 | type SelectExpr struct { |
| 152 | Expr Expr |
| 153 | As UnrestrictedName |
| 154 | } |
| 155 | |
| 156 | // NormalizeTopLevelVarName preemptively expands any UnresolvedName at |
| 157 | // the top level of the expression into a VarName. This is meant |
nothing calls this directly
no outgoing calls
no test coverage detected