| 175 | |
| 176 | |
| 177 | static const char *upvalname (const Proto *p, int uv) { |
| 178 | TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); |
| 179 | if (s == NULL) return "?"; |
| 180 | else return getstr(s); |
| 181 | } |
| 182 | |
| 183 | |
| 184 | static const char *findvararg (CallInfo *ci, int n, StkId *pos) { |
no outgoing calls
no test coverage detected