MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / breakstat

Function breakstat

extlibs/lua/src/lparser.c:1419–1423  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1417** Break statement. Semantically equivalent to "goto break".
1418*/
1419static void breakstat (LexState *ls) {
1420 int line = ls->linenumber;
1421 luaX_next(ls); /* skip break */
1422 newgotoentry(ls, luaS_newliteral(ls->L, "break"), line, luaK_jump(ls->fs));
1423}
1424
1425
1426/*

Callers 1

statementFunction · 0.85

Calls 3

luaX_nextFunction · 0.85
newgotoentryFunction · 0.85
luaK_jumpFunction · 0.85

Tested by

no test coverage detected