예제 #1
0
		public override void Accept (RaiseStatement raise)
		{
			raise.Value.Visit (this);
			methodBuilder.EmitInstruction (raise.Location, Opcode.Raise);
		}
예제 #2
0
 public void Accept(RaiseStatement raise)
 {
     raise.Value.Visit (this);
 }
예제 #3
0
 public void Accept(RaiseStatement raise)
 {
     raise.Value.Visit (this);
     methodBuilder.EmitInstruction (Opcode.Raise);
 }
예제 #4
0
		public override void Accept (RaiseStatement raise)
		{
			errorLog.AddError (ErrorType.ParserError, raise.Location,
				"statement can not exist inside pattern!");
		}
예제 #5
0
 public virtual void Accept(RaiseStatement raise)
 {
 }
예제 #6
0
 public void Accept(RaiseStatement raise)
 {
     raise.VisitChildren (this);
 }
예제 #7
0
 public void Accept(RaiseStatement raise)
 {
     errorLog.AddError (ErrorType.ParserError, raise.Location,
         "Statement not allowed outside function body!");
 }
예제 #8
0
 public void Accept(RaiseStatement raise)
 {
 }