[Pkg] SystemEditor: SystemEditor-Squeak-kph.167.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Thu Jul 2 22:14:07 UTC 2009


A new version of SystemEditor-Squeak was added to project SystemEditor:
http://www.squeaksource.com/SystemEditor/SystemEditor-Squeak-kph.167.mcz

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

Name: SystemEditor-Squeak-kph.167
Author: kph
Time: 2 July 2009, 11:14:03 pm
UUID: 50029b61-7410-403a-9fb5-6b49797ffc14
Ancestors: SystemEditor-Squeak-mtf.166

+ edResolveSharedPool: adds an empty Dictionary to the subject if the pool does not exist.



=============== Diff against SystemEditor-Squeak-mtf.166 ===============

Item was added:
+ ----- Method: SystemEditor>>edResolveSharedPool: (in category 'building') -----
+ edResolveSharedPool: aSymbol 
+ 	^ subject at: aSymbol ifAbsentPut: [ Dictionary new ]!

Item was changed:
  ----- Method: ClassEditor>>edName:superclassEditor:type:instVarString:classVarString:poolImports:category: (in category 'building') -----
  edName: aSymbol superclassEditor: anEditor type: typeOfClass instVarString: instString classVarString: classString poolImports: poolString category: catString 
  	| scanner |
  	scanner := Scanner new.
  	name := aSymbol.
  	self superclass: anEditor.
  	type := typeOfClass.
  	category := catString.
  	instVarNames := scanner scanFieldNames: instString.
  	classVarNames := scanner scanFieldNames: classString.
  	sharedPools := (scanner scanFieldNames: poolString) 
+ 				collect: [:ea | system edResolveSharedPool: ea asSymbol ]!
- 				collect: [:ea | system edResolve: ea asSymbol]!



More information about the Packages mailing list