GDBFrame.st
changeset 40 0ce76b671515
child 41 fb48207b6104
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBFrame.st	Wed Sep 17 09:01:56 2014 +0100
@@ -0,0 +1,55 @@
+"{ Package: 'jv:libgdbs' }"
+
+GDBDebuggerObject subclass:#GDBFrame
+	instanceVariableNames:'level addr func file fullname line from'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'GDB-Core'
+!
+
+!GDBFrame class methodsFor:'accessing - GDB value descriptors'!
+
+gdbValueDescriptor
+    ^ (super gdbValueDescriptor)
+        define: #level as: Integer;
+        define: #func as: String;
+        define: #file as: String;
+        define: #fullname as: String;
+        define: #line as: Integer;
+        define: #from as: String;
+        define: #addr as: Integer;
+        yourself
+
+    "Created: / 16-09-2014 / 23:59:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!GDBFrame methodsFor:'accessing'!
+
+addr
+    ^ addr
+!
+
+file
+    ^ file
+!
+
+from
+    ^ from
+!
+
+fullname
+    ^ fullname
+!
+
+func
+    ^ func
+!
+
+level
+    ^ level
+!
+
+line
+    ^ line
+! !
+