コード例 #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
ファイル: CFGVerifier.cs プロジェクト: DragonXYZ/cilpe
 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);
 }