MCPcopy Create free account
hub / github.com/F-Stack/f-stack / explist

Function explist

freebsd/contrib/openzfs/module/lua/lparser.c:814–824  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

812
813
814static int explist (LexState *ls, expdesc *v) {
815 /* explist -> expr { `,' expr } */
816 int n = 1; /* at least one expression */
817 expr(ls, v);
818 while (testnext(ls, ',')) {
819 luaK_exp2nextreg(ls->fs, v);
820 expr(ls, v);
821 n++;
822 }
823 return n;
824}
825
826
827static void funcargs (LexState *ls, expdesc *f, int line) {

Callers 5

funcargsFunction · 0.85
assignmentFunction · 0.85
forlistFunction · 0.85
localstatFunction · 0.85
retstatFunction · 0.85

Calls 3

exprFunction · 0.70
testnextFunction · 0.70
luaK_exp2nextregFunction · 0.70

Tested by

no test coverage detected