MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / statlist

Function statlist

ThirdParty/lua/lua/lparser.c:592–601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

590
591
592static void statlist (LexState *ls) {
593 /* statlist -> { stat [';'] } */
594 while (!block_follow(ls, 1)) {
595 if (ls->t.token == TK_RETURN) {
596 statement(ls);
597 return; /* 'return' must be last statement */
598 }
599 statement(ls);
600 }
601}
602
603
604static 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