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