GDBVariable.st
changeset 90 6046abc9ddf4
parent 83 b2fb8968f1f4
child 91 472a4841a8b6
--- a/GDBVariable.st	Tue Oct 03 21:15:12 2017 +0100
+++ b/GDBVariable.st	Fri Nov 17 20:36:08 2017 -0300
@@ -54,7 +54,7 @@
             ].
         ].
 
-        result := debugger send: (GDBMI_var_create new arguments: { '-' . '*' . name }).
+        result := debugger send: (GDBMI_var_create new arguments: (Array with: '-' with: '*' with: name)).
 
         frame thread id ~= currentThreadId ifTrue:[ 
             debugger send: (GDBMI_thread_select new arguments:currentThreadId).       
@@ -70,7 +70,7 @@
     ^ varobj
 
     "Created: / 27-02-2015 / 17:18:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 13-06-2017 / 14:51:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-11-2017 / 20:19:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBVariable methodsFor:'initialization'!