(f, n int)
| 1289 | } |
| 1290 | |
| 1291 | func (l *State) upValue(f, n int) **upValue { |
| 1292 | return &l.indexToValue(f).(*luaClosure).upValues[n-1] |
| 1293 | } |
| 1294 | |
| 1295 | // UpValueId returns a unique identifier for the upvalue numbered n from the |
| 1296 | // closure at index f. Parameters f and n are as in UpValue (but n cannot be |
nothing calls this directly
no test coverage detected