GDBParser.st
changeset 40 0ce76b671515
parent 33 7abcdaaa5229
--- a/GDBParser.st	Tue Sep 09 12:44:37 2014 +0100
+++ b/GDBParser.st	Wed Sep 17 09:01:56 2014 +0100
@@ -759,6 +759,10 @@
     self peek ~~ $] ifTrue:[
         list := OrderedCollection new.
         [ 
+            self peek isAlphaNumeric ifTrue:[ 
+                self parseVariable.
+                self expect: $=. 
+            ].
             list add: (descriptor parseUsingParser: self)
         ] doWhile: [ 
             (self peek == $,) ifTrue:[ self next. true ] ifFalse:[ false ]
@@ -768,6 +772,7 @@
     ^ list
 
     "Created: / 18-06-2014 / 21:00:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-09-2014 / 08:03:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBParser methodsFor:'streaming'!