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

Method RepeatStatement

LuaParser/src/Parse/LuaParser.cpp:354–368  ·  view source on GitHub ↗

repeatstat -> REPEAT block UNTIL cond */

Source from the content-addressed store, hash-verified

352
353/* repeatstat -> REPEAT block UNTIL cond */
354void LuaParser::RepeatStatement() {
355 auto m = Mark();
356
357 CheckAndNext(TK_REPEAT);
358
359 Block();
360
361 CheckAndNext(TK_UNTIL);
362
363 Condition();
364
365 TestAndNext(';');
366
367 m.Complete(*this, LuaSyntaxNodeKind::RepeatStatement);
368}
369
370void LuaParser::FunctionStatement() {
371 auto m = Mark();

Callers

nothing calls this directly

Calls 1

CompleteMethod · 0.80

Tested by

no test coverage detected