help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] Changing the superspace of a namespace


From: Paolo Bonzini
Subject: Re: [Help-smalltalk] Changing the superspace of a namespace
Date: Fri, 29 Jul 2011 10:49:11 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20110707 Thunderbird/5.0

On 07/29/2011 10:38 AM, Gwenael Casaccio wrote:


diff --git a/kernel/AbstNamespc.st b/kernel/AbstNamespc.st
index 44d44db..9b1fd7b 100644
--- a/kernel/AbstNamespc.st
+++ b/kernel/AbstNamespc.st
@@ -406,14 +406,14 @@ an instance of me; it is called their
`environment''. '>
                 [:each |
                 each isClass
                     ifTrue:
-                       [each recompileAll.
-                       each class recompileAll]].
+                       [each compileAll.
+                       each class compileAll]].
         self allSubassociationsDo:
                 [:assoc |
                 assoc value isClass
                     ifTrue:
-                       [assoc value recompileAll.
-                       assoc value class recompileAll]]
+                       [assoc value compileAll.
+                       assoc value class compileAll]]
      ]

      subspaces [

Applying this, thanks.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]