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

Function statlist

third-party/lua-5.4.6/src/lparser.c:799–808  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

797
798
799static void statlist (LexState *ls) {
800 /* statlist -> { stat [';'] } */
801 while (!block_follow(ls, 1)) {
802 if (ls->t.token == TK_RETURN) {
803 statement(ls);
804 return; /* 'return' must be last statement */
805 }
806 statement(ls);
807 }
808}
809
810
811static void fieldsel (LexState *ls, expdesc *v) {

Callers 5

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

Calls 2

block_followFunction · 0.70
statementFunction · 0.70

Tested by 1

test_then_blockFunction · 0.56