Andreas Raab uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-ar.132.mcz==================== Summary ====================
Name: Compiler-ar.132
Author: ar
Time: 5 March 2010, 7:54:14.389 pm
UUID: 576cee71-0637-ee4a-9f36-547cae3cedcb
Ancestors: Compiler-ar.131
Use Smalltalk globals instead of Smalltalk as default environment.
=============== Diff against Compiler-ar.131 ===============
Item was changed:
----- Method: Encoder>>environment (in category 'encoding') -----
environment
"Answer the environment of the current compilation context,
be it in a class or global (e.g. a workspace)"
^class == nil
+ ifTrue: [Smalltalk globals]
- ifTrue: [Smalltalk]
ifFalse: [class environment]!