[Pkg] SystemEditor: SystemEditor-mtf.109.mcz

squeaksource-noreply at iam.unibe.ch squeaksource-noreply at iam.unibe.ch
Tue Jul 22 18:44:34 UTC 2008


A new version of SystemEditor was added to project SystemEditor:
http://www.squeaksource.com/SystemEditor/SystemEditor-mtf.109.mcz

==================== Summary ====================

Name: SystemEditor-mtf.109
Author: mtf
Time: 22 July 2008, 11:44:03 am
UUID: 0a595328-5719-4816-993f-273ec92af7dc
Ancestors: SystemEditor-mtf.108

fixed a validation bug when the superclass is nil

=============== Diff against SystemEditor-mtf.108 ===============

Item was changed:
  ----- Method: ClassEditor>>validateInstVarNames (in category 'validating') -----
  validateInstVarNames
+ 	self instVarNames do: [:ea | 
+ 		(ReservedNames includes: ea)
+ 			ifTrue: [IllegalVariableName signal].
+ 		(self edSuperEditor notNil
+ 			and: [self edSuperEditor allInstVarNames includes: ea])
+ 			ifTrue: [IllegalVariableName signal].
+ 		self subclasses do: [:class |
+ 			(class instVarNames includes: ea)
+ 				ifTrue: [IllegalVariableName signal]]]!
- 	self instVarNames do: 
- 		[:ea | 
- 		(ReservedNames includes: ea) ifTrue: [IllegalVariableName signal].
- 		(self edSuperEditor allInstVarNames includes: ea) ifTrue: [IllegalVariableName signal].
- 		self subclasses do: [:class | (class instVarNames includes: ea) ifTrue: [IllegalVariableName signal]]]!



More information about the Packages mailing list