stores v into the location
(b *builder)
| 18 | type lvalue interface { |
| 19 | store(b *builder, v Value) // stores v into the location |
| 20 | load(b *builder) Value // loads the contents of the location |
| 21 | address(b *builder) Value // address of the location |
| 22 | typ() Type // returns the type of the location |
| 23 | } |