#BUGFIX by cg cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Thu, 10 Aug 2017 10:05:49 +0200
branchcvs_MAIN
changeset 1041 4413bae59f15
parent 1040 4a647c8034ab
child 1042 60e08d003829
#BUGFIX by cg class: SmallSense::SmalltalkInferencer::Phase2 changed: #visitUnaryNode: catch JavaVM errors (NoClassPathSignal)
SmallSense__SmalltalkInferencer.st
--- a/SmallSense__SmalltalkInferencer.st	Sun Jul 16 12:40:49 2017 +0200
+++ b/SmallSense__SmalltalkInferencer.st	Thu Aug 10 10:05:49 2017 +0200
@@ -727,7 +727,7 @@
                     ] ifFalse:[
                         anObject inferedType: (Type withClass: javaClass class).
                     ].
-                ] on: Error do:[
+                ] on: (Error , JavaClassReader noClassPathDefinedSignal) do:[
                     "/ ignore...
                 ]
             ] ifFalse:[
@@ -739,7 +739,7 @@
     "Created: / 27-11-2011 / 15:49:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 08-10-2013 / 11:07:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified (comment): / 05-08-2014 / 13:56:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 14-07-2017 / 13:19:15 / cg"
+    "Modified: / 10-08-2017 / 10:04:59 / cg"
 ! !
 
 !SmalltalkInferencer::Phase3 class methodsFor:'documentation'!