| 6 | ) |
| 7 | |
| 8 | type LeftValue struct { |
| 9 | variable *symbol.Variable |
| 10 | object stack.Object |
| 11 | } |
| 12 | |
| 13 | func NewLeftValue(variable *symbol.Variable, object stack.Object) *LeftValue { |
| 14 | return &LeftValue{ |
nothing calls this directly
no outgoing calls
no test coverage detected