DoWhatIMeanSupport.st
branchjv
changeset 5229 5b8d65dfdb83
parent 5228 4644e610c1b9
parent 5225 8bcca5a042c5
child 5260 c36548c31c27
--- a/DoWhatIMeanSupport.st	Tue Aug 23 10:02:37 2016 +0100
+++ b/DoWhatIMeanSupport.st	Wed Aug 31 11:21:45 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2002 by eXept Software AG
 	      All Rights Reserved
@@ -2346,7 +2348,7 @@
 "/
 "/    info := best storeString.
 "/    implClass notNil ifTrue:[
-"/        info := implClass name , '  ' , info.
+"/        info := implClass name , ' » ' , info.
 "/    ].
 "/    self information:info.
 "/].
@@ -4980,7 +4982,7 @@
 "/
 "/    info := best storeString.
 "/    implClass notNil ifTrue:[
-"/        info := implClass name , '  ' , info.
+"/        info := implClass name , ' » ' , info.
 "/    ].
 "/    self information:info.
 
@@ -6161,14 +6163,13 @@
 
     |valueAndKind|
 
-aVariableName = 'LargeInteger' ifTrue:[self halt.].
     (valueAndKind := self valueAndKindOfVariable:aVariableName) notNil ifTrue:[
         self assert:valueAndKind isArray.
         ^ valueAndKind first.
     ].
     ^ nil
 
-    "Modified: / 01-05-2016 / 12:41:30 / cg"
+    "Modified: / 26-08-2016 / 14:16:16 / cg"
 ! !
 
 !DoWhatIMeanSupport::InputCompletionResult class methodsFor:'instance creation'!