MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / statlist

Function statlist

Dependencies/lua/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.85
blockFunction · 0.85
repeatstatFunction · 0.85
test_then_blockFunction · 0.85
mainfuncFunction · 0.85

Calls 2

block_followFunction · 0.85
statementFunction · 0.85

Tested by 1

test_then_blockFunction · 0.68