** Return the "variable description" (Vardesc) of a given variable. ** (Unless noted otherwise, all variables are referred to by their ** compiler indices.) */
| 224 | ** compiler indices.) |
| 225 | */ |
| 226 | static Vardesc *getlocalvardesc (FuncState *fs, int vidx) { |
| 227 | return &fs->ls->dyd->actvar.arr[fs->firstlocal + vidx]; |
| 228 | } |
| 229 | |
| 230 | |
| 231 | /* |
no outgoing calls
no test coverage detected