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

Function statlist

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

Source from the content-addressed store, hash-verified

873
874
875static void statlist (LexState *ls) {
876 /* statlist -> { stat [';'] } */
877 while (!block_follow(ls, 1)) {
878 if (ls->t.token == TK_RETURN) {
879 statement(ls);
880 return; /* 'return' must be last statement */
881 }
882 statement(ls);
883 }
884}
885
886
887static void fieldsel (LexState *ls, expdesc *v) {

Callers 4

bodyFunction · 0.70
blockFunction · 0.70
repeatstatFunction · 0.70
mainfuncFunction · 0.70

Calls 2

block_followFunction · 0.70
statementFunction · 0.70

Tested by

no test coverage detected