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