| 242 | |
| 243 | |
| 244 | static int searchvar (FuncState *fs, TString *n) { |
| 245 | int i; |
| 246 | for (i = cast_int(fs->nactvar) - 1; i >= 0; i--) { |
| 247 | if (luaS_eqstr(n, getlocvar(fs, i)->varname)) |
| 248 | return i; |
| 249 | } |
| 250 | return -1; /* not found */ |
| 251 | } |
| 252 | |
| 253 | |
| 254 | /* |
no test coverage detected