MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / breakstat

Function breakstat

3rd/lua-5.4.3/src/lparser.c:1426–1430  ·  view source on GitHub ↗

** Break statement. Semantically equivalent to "goto break". */

Source from the content-addressed store, hash-verified

1424** Break statement. Semantically equivalent to "goto break".
1425*/
1426static void breakstat (LexState *ls) {
1427 int line = ls->linenumber;
1428 luaX_next(ls); /* skip break */
1429 newgotoentry(ls, luaS_newliteral(ls->L, "break"), line, luaK_jump(ls->fs));
1430}
1431
1432
1433/*

Callers 1

statementFunction · 0.85

Calls 3

luaX_nextFunction · 0.85
newgotoentryFunction · 0.85
luaK_jumpFunction · 0.85

Tested by

no test coverage detected