5 writes to catch_handler
Mono.Cecil (5)
Mono.Cecil.Cil\CodeReader.cs (1)
406 async_method.catch_handler = new InstructionOffset (GetInstruction (async_method.catch_handler.Offset));
Mono.Cecil.Cil\Symbols.cs (4)
523 set { catch_handler = value; } 557 this.catch_handler = new InstructionOffset (catchHandler); 563 this.catch_handler = new InstructionOffset (catchHandler); 569 this.catch_handler = new InstructionOffset (-1);
4 references to catch_handler
Mono.Cecil (4)
Mono.Cecil.Cil\CodeReader.cs (2)
405 if (async_method.catch_handler.Offset > -1) 406 async_method.catch_handler = new InstructionOffset (GetInstruction (async_method.catch_handler.Offset));
Mono.Cecil.Cil\Symbols.cs (1)
522 get { return catch_handler; }
Mono.Cecil\AssemblyWriter.cs (1)
2471 signature.WriteUInt32 ((uint) async_method.catch_handler.Offset + 1);