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