(i int)
| 56 | |
| 57 | func (c *luaClosure) upValueCount() int { return len(c.upValues) } |
| 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} } |
nothing calls this directly
no outgoing calls
no test coverage detected