Variable is a named expression which may be referenced in subsequent expressions.
| 269 | |
| 270 | // Variable is a named expression which may be referenced in subsequent expressions. |
| 271 | type Variable struct { |
| 272 | exprID int64 |
| 273 | name ValueString |
| 274 | expression ValueString |
| 275 | } |
| 276 | |
| 277 | // Name returns the variable name. |
| 278 | func (v *Variable) Name() ValueString { |
nothing calls this directly
no outgoing calls
no test coverage detected