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