Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

21 lines
398 B
C#

namespace Mono.Debugger.Soft
{
public class MethodExitEvent : Event {
MethodMirror method;
long id;
internal MethodExitEvent (VirtualMachine vm, int req_id, long thread_id, long id) : base (EventType.MethodExit, vm, req_id, thread_id) {
this.id = id;
}
public MethodMirror Method {
get {
if (method == null)
method = vm.GetMethod (id);
return method;
}
}
}
}