| 125 | |
| 126 | |
| 127 | static const char *upvalname (Proto *p, int uv) { |
| 128 | TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); |
| 129 | if (s == NULL) return "?"; |
| 130 | else return getstr(s); |
| 131 | } |
| 132 | |
| 133 | |
| 134 | static const char *findvararg (CallInfo *ci, int n, StkId *pos) { |
no outgoing calls
no test coverage detected