public void Visit(ContinueStatement expression) { Builder.Append("continue;"); }
/// <summary> /// Called by a loop to stop the "continue" keyword escalation /// </summary> protected void ResetContinueIfPresent(string label) { if (continueStatement != null && continueStatement.Label == label) { continueStatement = null; } }
public void Visit(ContinueStatement statement) { continueStatement = statement; }
void Analyze(ContinueStatement Stmt) { SetCurrentLineAndCharNos(Stmt); }