Exemplo n.º 1
0
		public void Visit(ContinueStatement expression)
		{
			Builder.Append("continue;");
		}
Exemplo n.º 2
0
 /// <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;
     }
 }
Exemplo n.º 3
0
 public void Visit(ContinueStatement statement)
 {
     continueStatement = statement;
 }
Exemplo n.º 4
0
 void Analyze(ContinueStatement Stmt)
 {
     SetCurrentLineAndCharNos(Stmt);
 }