Exemplo n.º 1
0
		public override void Accept (ContinueStatement cont)
		{
			methodBuilder.EmitInstruction (cont.Location, Opcode.Jump, continueLabels.Peek ());
		}
Exemplo n.º 2
0
 public void Accept(ContinueStatement cont)
 {
     cont.Visit (functionCompiler);
 }
Exemplo n.º 3
0
 public virtual void Accept(ContinueStatement cont)
 {
 }
Exemplo n.º 4
0
		public override void Accept (ContinueStatement cont)
		{
			errorLog.AddError (ErrorType.ParserError, cont.Location,
				"statement can not exist inside pattern!");
		}
Exemplo n.º 5
0
 public void Accept(ContinueStatement cont)
 {
     errorLog.AddError (ErrorType.ParserError, cont.Location,
         "Statement not allowed outside function body!");
 }