summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
authorKyle Galloway <kgallowa@redhat.com>2007-05-08 18:21:47 +0000
committerKyle Galloway <kgallowa@redhat.com>2007-05-08 18:21:47 +0000
commit2adeaed5ad2240a169114fa662ee454a8a8baa54 (patch)
treef9e1d2eb11340f159385e913a1d5d6441db2a693 /vm
parent986e05ca141e0d698141df19d2a6d48bb819d255 (diff)
downloadclasspath-2adeaed5ad2240a169114fa662ee454a8a8baa54.tar.gz
2007-05-08 Kyle Galloway <kgallowa@redhat.com>
* vm/reference/VMFrame.java (<init>): Add a parameter for the "this" pointer of the frame.CVS: ----------------------------------------------------------------------
Diffstat (limited to 'vm')
-rw-r--r--vm/reference/gnu/classpath/jdwp/VMFrame.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/vm/reference/gnu/classpath/jdwp/VMFrame.java b/vm/reference/gnu/classpath/jdwp/VMFrame.java
index eec7b63d6..767a902ff 100644
--- a/vm/reference/gnu/classpath/jdwp/VMFrame.java
+++ b/vm/reference/gnu/classpath/jdwp/VMFrame.java
@@ -73,12 +73,15 @@ public class VMFrame
* @param thr a Thread, the thread this frame is in
* @param frame_id a long, the jframeID of this frame
* @param frame_loc a Location, the location of this frame
+ * @param frame_obj the "this" object of this frame
*/
- public VMFrame(Thread thr, long frame_id, Location frame_loc)
+ public VMFrame(Thread thr, long frame_id, Location frame_loc,
+ Object frame_obj)
{
thread = thr;
id = frame_id;
loc = frame_loc;
+ obj = frame_obj;
}
/**