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

dtest-excfilter.il « Test « Mono.Debugger.Soft « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d435fda1e11aa741a7c93873e2c592c15a3f644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.assembly extern mscorlib
{
  .ver 2:0:0:0
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'dtest-lib' { }

.class public auto ansi ExceptionFilterTest
       extends [mscorlib]System.Object
{
	.method public static void Main () cil managed
	{
		.entrypoint
		call void class ExceptionFilterTest::Test ()
		ret
	}

	.method public static int32 Filter ([mscorlib]System.Exception exc) cil managed noinlining
	{
		ldc.i4.1
		ret
	}

	.method public static void Handler ([mscorlib]System.Exception exc) cil managed noinlining
	{
		ret
	}

	.method public static void Test () cil managed noinlining
	{
		.try {
			newobj instance void class [mscorlib]System.InvalidOperationException::.ctor ()
			throw

			leave end
		} filter {
			call int32 class ExceptionFilterTest::Filter([mscorlib]System.Exception)
			endfilter
		} {
			call void class ExceptionFilterTest::Handler([mscorlib]System.Exception)
			leave end
		}

	end:
		ret
	}
}