예제 #1
0
파일: IntIL.cs 프로젝트: DragonXYZ/cilpe
 protected override void VisitRethrowException(RethrowException node, object data)
 {
     throw new NodeNotSupportedException(node);
 }
예제 #2
0
파일: Visitor.cs 프로젝트: DragonXYZ/cilpe
 protected internal virtual void VisitRethrowException(RethrowException node, object data)
 {
     throw new NodeNotSupportedException(node);
 }
예제 #3
0
 protected internal override void VisitRethrowException(RethrowException node, object data)
 {
     if(! (node.Parent is CatchBlock || node.Parent is UserFilteredBlock) )
         throw new VerifierException();
 }
예제 #4
0
파일: Emitter.cs 프로젝트: DragonXYZ/cilpe
 protected internal override void VisitRethrowException(RethrowException node, object data)
 {
     prevHasNext = false;
     generator.Emit(OpCodes.Rethrow);
 }