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

Function block

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

Source from the content-addressed store, hash-verified

1417
1418
1419static void block (LexState *ls) {
1420 /* block -> statlist */
1421 FuncState *fs = ls->fs;
1422 BlockCnt bl;
1423 enterblock(fs, &bl, 0);
1424 statlist(ls);
1425 leaveblock(fs);
1426}
1427
1428
1429/*

Callers 5

whilestatFunction · 0.70
forbodyFunction · 0.70
test_then_blockFunction · 0.70
ifstatFunction · 0.70
statementFunction · 0.70

Calls 3

enterblockFunction · 0.70
statlistFunction · 0.70
leaveblockFunction · 0.70

Tested by 1

test_then_blockFunction · 0.56