(index int, v value)
| 466 | } |
| 467 | |
| 468 | func apiCheckStackIndex(index int, v value) { |
| 469 | if apiCheck && (v == none || isPseudoIndex(index)) { |
| 470 | panic(fmt.Sprintf("index %d not in the stack", index)) |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | // SetField does the equivalent of table[key]=v where table is the value at |
| 475 | // index and v is the value on top of the stack. |
no test coverage detected