** Create a new local variable with the given 'name' and regular kind. */
| 209 | ** Create a new local variable with the given 'name' and regular kind. |
| 210 | */ |
| 211 | static int new_localvar (LexState *ls, TString *name) { |
| 212 | return new_varkind(ls, name, VDKREG); |
| 213 | } |
| 214 | |
| 215 | #define new_localvarliteral(ls,v) \ |
| 216 | new_localvar(ls, \ |
no test coverage detected