Пример #1
0
 internal JvmLineNumberEntry(JvmMethodRemoteHandle method, jvmtiLineNumberEntry entry)
 {
     StartLocation = new JvmRemoteLocation(method, entry.StartLocation);
     LineNumber    = entry.LineNumber;
 }
Пример #2
0
 internal JvmLineNumberEntry(JvmMethodRemoteHandle method, jvmtiLineNumberEntry entry)
 {
     StartLocation = new JvmRemoteLocation(method, entry.StartLocation);
     LineNumber = entry.LineNumber;
 }
Пример #3
0
 public jvmtiError ClearBreakpoint(JvmVirtualMachineRemoteHandle virtualMachine, JvmRemoteLocation location)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public jvmtiError GetMethodLocation(JvmVirtualMachineRemoteHandle virtualMachine, JvmMethodRemoteHandle method, out JvmRemoteLocation startLocation, out JvmRemoteLocation endLocation)
 {
     throw new NotImplementedException();
 }
Пример #5
0
 public jvmtiError GetFrameLocation(JvmVirtualMachineRemoteHandle virtualMachine, JvmThreadRemoteHandle thread, int depth, out JvmRemoteLocation location)
 {
     throw new NotImplementedException();
 }