diff -r 9a7fa841f12e -r a6d8b93441b0 compiler/PPCASTUtilities.st --- a/compiler/PPCASTUtilities.st Mon Aug 17 13:39:38 2015 +0100 +++ b/compiler/PPCASTUtilities.st Mon Aug 17 23:11:56 2015 +0100 @@ -44,11 +44,11 @@ self withAllVariableNodesOf: anRBBlockNode do: [ :node | (allDefinedVarNames includes: node name) ifFalse:[ (allInstVarNames includes: node name) ifTrue:[ - PPCCompilationError new signalWith: 'code refers to an instance variable named `',node name,'`'. + PPCCompilationError new signal: 'code refers to an instance variable named `',node name,'`'. ^ self. ]. (allClassVarNames includes: node name) ifTrue:[ - PPCCompilationError new signalWith: 'code refers to a class variable named `',node name,'`'. + PPCCompilationError new signal: 'code refers to a class variable named `',node name,'`'. ^ self. ]. (Smalltalk includesKey: node name asSymbol) ifFalse:[ @@ -73,7 +73,7 @@ ]. "Created: / 27-07-2015 / 12:15:28 / Jan Vrany " - "Modified: / 27-07-2015 / 14:43:07 / Jan Vrany " + "Modified: / 17-08-2015 / 13:49:50 / Jan Vrany " ! ! !PPCASTUtilities methodsFor:'enumerating'!