** Return the number of variables in the stack for function 'fs' */
| 240 | ** Return the number of variables in the stack for function 'fs' |
| 241 | */ |
| 242 | int luaY_nvarstack (FuncState *fs) { |
| 243 | return stacklevel(fs, fs->nactvar); |
| 244 | } |
| 245 | |
| 246 | |
| 247 | /* |
no test coverage detected