| 104 | |
| 105 | |
| 106 | static const char *upvalname (Proto *p, int uv) { |
| 107 | TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); |
| 108 | if (s == NULL) return "?"; |
| 109 | else return getstr(s); |
| 110 | } |
| 111 | |
| 112 | |
| 113 | static const char *findvararg (CallInfo *ci, int n, StkId *pos) { |
no outgoing calls
no test coverage detected