[squeak-dev] The Trunk: Compiler-ar.80.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Sep 6 05:06:42 UTC 2009


Andreas Raab uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-ar.80.mcz

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

Name: Compiler-ar.80
Author: ar
Time: 5 September 2009, 10:06:25 am
UUID: 82001507-c038-784a-a4e2-0c969b53800f
Ancestors: Compiler-eem.79

Add an initialize method working around the limitations of MCDs and scripts.

=============== Diff against Compiler-eem.79 ===============

Item was added:
+ ----- Method: Compiler class>>initialize (in category 'class initialization') -----
+ initialize
+ 	"For the benefit of MC running a required script in the proper order."
+ 	#('Compiler' 'Kernel' 'System') do:[:pkgName|
+ 		Transcript nextPutAll: pkgName; cr; flush.
+ 		(PackageInfo named: pkgName) methods
+ 			do: [:ea | ea actualClass recompile: ea methodSymbol]
+ 			displayingProgress: 'Recompiling ', pkgName,'...']
+ 
+ !




More information about the Squeak-dev mailing list