GDBVariableObject.st
changeset 178 71baafd9bbcb
parent 160 b5b1e436a994
child 202 412846313554
--- a/GDBVariableObject.st	Mon Feb 25 17:55:20 2019 +0000
+++ b/GDBVariableObject.st	Tue Feb 26 09:27:50 2019 +0000
@@ -250,12 +250,15 @@
 !
 
 value
+    "Retun an up-to-date pretty-printed string representation of this varobj's value."
+
     changed value. "/ to force update if necessary
     self isValid ifFalse:[ ^ self class classResources string: '<invalid>' ].
     self inScope ifFalse:[ ^ self class classResources string: '<out-of-scope>' ].
     ^ value
 
     "Modified: / 12-02-2018 / 22:00:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 25-02-2019 / 14:36:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 valueFormatted: aGDBOutputFormat