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

28 lines
474 B
C#

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