Fix for a bug fix (compiling workspace-var access when loading package and not-yet-loaded class encountered) jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Mon, 29 Oct 2012 17:05:17 +0000
branchjv
changeset 17975 c3e4cd2a9637
parent 17974 bbfb2de13cf2
child 17976 50c2416f962a
Fix for a bug fix (compiling workspace-var access when loading package and not-yet-loaded class encountered)
ClassCategoryReader.st
--- a/ClassCategoryReader.st	Fri Oct 26 13:00:58 2012 +0100
+++ b/ClassCategoryReader.st	Mon Oct 29 17:05:17 2012 +0000
@@ -336,7 +336,7 @@
                                          skipIfSame:SkipUnchangedMethods
                                          silent:silent.
                         ] on: Parser undefinedVariableNotification do:[:ex|
-                            ex proceedWith: nil
+                            ex proceedWith: false "No, do not correct!!"
                         ].
 
                         (method notNil and:[method ~~ #Error]) ifTrue:[
@@ -445,11 +445,11 @@
 !ClassCategoryReader class methodsFor:'documentation'!
 
 version
-    ^ '$Id: ClassCategoryReader.st 10855 2012-10-26 12:00:58Z vranyj1 $'
+    ^ '$Id: ClassCategoryReader.st 10856 2012-10-29 17:05:17Z vranyj1 $'
 !
 
 version_SVN
-    ^ '$Id: ClassCategoryReader.st 10855 2012-10-26 12:00:58Z vranyj1 $'
+    ^ '$Id: ClassCategoryReader.st 10856 2012-10-29 17:05:17Z vranyj1 $'
 ! !
 
 ClassCategoryReader initialize!