()
| 59 | func (c *goClosure) setUpValue(i int, v value) { c.upValues[i] = v } |
| 60 | func (c *goClosure) upValueCount() int { return len(c.upValues) } |
| 61 | func (l *State) newUpValue() *upValue { return &upValue{home: nil} } |
| 62 | |
| 63 | func (uv *upValue) value() value { |
| 64 | if home, ok := uv.home.(stackLocation); ok { |