Fix finalization of `VDBVariableObject`
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 20 Sep 2019 21:10:36 +0100
changeset 184 649f53564122
parent 183 91a467093d63
child 185 bb863cb24c1a
Fix finalization of `VDBVariableObject` Add missing `VDBVariableObject >> executor` returning specialized executor for VDB varobjs.
VDBVariableObject.st
--- a/VDBVariableObject.st	Fri Sep 06 02:30:16 2019 +0100
+++ b/VDBVariableObject.st	Fri Sep 20 21:10:36 2019 +0100
@@ -223,6 +223,17 @@
     "Modified: / 08-07-2019 / 16:52:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!VDBVariableObject methodsFor:'finalization'!
+
+executor
+    ^ VDBVariableObjectExecutor new 
+            setDebugger: debugger;
+            setId: name;
+            yourself
+
+    "Created: / 20-09-2019 / 21:05:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !VDBVariableObject methodsFor:'updating'!
 
 updateChanged
@@ -258,3 +269,10 @@
     "Modified: / 08-07-2019 / 15:56:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!VDBVariableObject class methodsFor:'documentation'!
+
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
+! !
+