SmallSense__CompletionEngine.st
changeset 118 88e6fd734a11
parent 117 441529422c2f
child 120 4fefce92f5bb
--- a/SmallSense__CompletionEngine.st	Wed Oct 02 13:37:01 2013 +0100
+++ b/SmallSense__CompletionEngine.st	Thu Oct 03 11:41:07 2013 +0100
@@ -3,7 +3,7 @@
 "{ NameSpace: SmallSense }"
 
 Object subclass:#CompletionEngine
-	instanceVariableNames:'codeView'
+	instanceVariableNames:'codeView result'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'SmallSense-Core'
@@ -33,8 +33,10 @@
      from it. Returns a CompletionResult with computed completions"
 
     codeView := aCodeView2OrTextEditView.
+    result := CompletionResult new.
     ^ self complete.
 
     "Created: / 02-10-2013 / 13:24:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 03-10-2013 / 11:18:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !