GDBFrame.st
changeset 90 6046abc9ddf4
parent 82 7ee72b7a498f
child 91 472a4841a8b6
--- a/GDBFrame.st	Tue Oct 03 21:15:12 2017 +0100
+++ b/GDBFrame.st	Fri Nov 17 20:36:08 2017 -0300
@@ -69,7 +69,7 @@
         variables := GDBTransientDataHolder debugger: debugger factory:[ 
             | result |
 
-            result := debugger send: (GDBMI_stack_list_variables new arguments: { '--thread' . thread id . '--frame' . level . '--simple-values' }).
+            result := debugger send: (GDBMI_stack_list_variables new arguments: (Array with: '--thread' with: thread id with: '--frame' with: level with: '--simple-values')).
             (result propertyAt: #variables) ? #()
                 do:[ :each | each setFrame: self ];
                 yourself
@@ -78,7 +78,7 @@
     ^ variables value
 
     "Created: / 27-02-2015 / 14:56:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 09-03-2015 / 23:43:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-11-2017 / 20:22:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBFrame methodsFor:'printing & storing'!