Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/codegen/FaultBlock.cs')
-rw-r--r--mcs/ilasm/codegen/FaultBlock.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/FaultBlock.cs b/mcs/ilasm/codegen/FaultBlock.cs
new file mode 100644
index 00000000000..34609712dcb
--- /dev/null
+++ b/mcs/ilasm/codegen/FaultBlock.cs
@@ -0,0 +1,41 @@
+//
+// Mono.ILASM.FaultBlock
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+//
+
+
+using System;
+
+namespace Mono.ILASM {
+
+ public class FaultBlock : ISehClause {
+
+ private HandlerBlock handler_block;
+
+ public FaultBlock ()
+ {
+
+ }
+
+ public void SetHandlerBlock (HandlerBlock hb)
+ {
+ handler_block = hb;
+ }
+
+ public PEAPI.HandlerBlock Resolve (CodeGen code_gen, MethodDef method)
+ {
+ PEAPI.CILLabel from = handler_block.GetFromLabel (code_gen, method);
+ PEAPI.CILLabel to = handler_block.GetToLabel (code_gen, method);
+ PEAPI.Fault fault = new PEAPI.Fault (from, to);
+
+ return fault;
+ }
+ }
+
+}
+
+