** Find a "name" for the constant 'c'. */
| 430 | ** Find a "name" for the constant 'c'. |
| 431 | */ |
| 432 | static void kname (const Proto *p, int c, const char **name) { |
| 433 | TValue *kvalue = &p->k[c]; |
| 434 | *name = (ttisstring(kvalue)) ? svalue(kvalue) : "?"; |
| 435 | } |
| 436 | |
| 437 | |
| 438 | /* |
no outgoing calls
no test coverage detected