MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / replaceBreakAndContinue

Function replaceBreakAndContinue

src/ast/ast_generate.cpp:1084–1087  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1082 };
1083
1084 void replaceBreakAndContinue ( Expression * expr, int32_t bg, int32_t cg ) {
1085 BreakAndContinueVisitor rbnc(bg, cg);
1086 expr->visit(rbnc);
1087 }
1088
1089 void replaceBreakAndContinueWithFlag ( Expression * expr, int32_t bg, int32_t cg, const string & breakFlag ) {
1090 BreakAndContinueVisitor rbnc(bg, cg, breakFlag);

Callers 2

replaceGeneratorWhileFunction · 0.85
replaceGeneratorForFunction · 0.85

Calls 1

visitMethod · 0.45

Tested by

no test coverage detected