()
| 58 | func (c *goClosure) upValue(i int) value { return c.upValues[i] } |
| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected