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

Method ForBody

LuaParser/src/Parse/LuaParser.cpp:341–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339}
340
341void LuaParser::ForBody() {
342 auto m = Mark();
343
344 CheckAndNext(TK_DO);
345
346 Block();
347
348 CheckAndNext(TK_END);
349
350 m.Complete(*this, LuaSyntaxNodeKind::ForBody);
351}
352
353/* repeatstat -> REPEAT block UNTIL cond */
354void LuaParser::RepeatStatement() {

Callers

nothing calls this directly

Calls 1

CompleteMethod · 0.80

Tested by

no test coverage detected