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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

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

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

Name: Compiler-ar.81
Author: ar
Time: 5 September 2009, 10:24:42 am
UUID: 1373ef7e-27c9-964c-bd38-7ce0168b4daf
Ancestors: Compiler-ar.80

Another required script for loading the latest batch of closure fixes.

=============== Diff against Compiler-ar.80 ===============

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