MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / breakstat

Function breakstat

lib/lua/src/lparser.c:1438–1442  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers 1

statementFunction · 0.85

Calls 3

luaX_nextFunction · 0.85
newgotoentryFunction · 0.85
luaK_jumpFunction · 0.85

Tested by

no test coverage detected