MCPcopy Create free account
hub / github.com/Cubitect/cubiomes-viewer / breakstat

Function breakstat

lua/src/lparser.c:1437–1441  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1435** Break statement. Semantically equivalent to "goto break".
1436*/
1437static void breakstat (LexState *ls) {
1438 int line = ls->linenumber;
1439 luaX_next(ls); /* skip break */
1440 newgotoentry(ls, luaS_newliteral(ls->L, "break"), line, luaK_jump(ls->fs));
1441}
1442
1443
1444/*

Callers 1

statementFunction · 0.85

Calls 3

luaX_nextFunction · 0.85
newgotoentryFunction · 0.85
luaK_jumpFunction · 0.85

Tested by

no test coverage detected