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