GDBFrame.st
changeset 56 20989de12cfb
parent 55 437ee6413c74
child 71 016b716773e3
--- a/GDBFrame.st	Fri Feb 27 16:47:55 2015 +0100
+++ b/GDBFrame.st	Sat Feb 28 08:34:19 2015 +0100
@@ -65,15 +65,16 @@
         variables := GDBTransientDataHolder debugger: debugger factory:[ 
             | result |
 
-            result := debugger send: (GDBMI_stack_list_variables new arguments: { '--thread' . thread id . '--frame' . level . '--no-values' }).
+            result := debugger send: (GDBMI_stack_list_variables new arguments: { '--thread' . thread id . '--frame' . level . '--simple-values' }).
             (result propertyAt: #variables)
-                do:[ :each | each debugger: debugger ];
+                do:[ :each | each setFrame: self ];
                 yourself
         ].
     ].
     ^ variables value
 
     "Created: / 27-02-2015 / 14:56:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-02-2015 / 01:04:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBFrame methodsFor:'printing & storing'!