MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / new_localvar

Function new_localvar

third-party/lua-5.5.0/src/lparser.c:211–213  ·  view source on GitHub ↗

** Create a new local variable with the given 'name' and regular kind. */

Source from the content-addressed store, hash-verified

209** Create a new local variable with the given 'name' and regular kind.
210*/
211static 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, \

Callers 3

parlistFunction · 0.70
forlistFunction · 0.70
localfuncFunction · 0.70

Calls 1

new_varkindFunction · 0.85

Tested by

no test coverage detected