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

Function breakstat

third-party/lua-5.4.6/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.70

Calls 3

luaX_nextFunction · 0.70
newgotoentryFunction · 0.70
luaK_jumpFunction · 0.70

Tested by

no test coverage detected