Andreas Raab uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-ar.76.mcz==================== Summary ====================
Name: ST80-ar.76
Author: ar
Time: 22 December 2009, 12:55:16 pm
UUID: 3d30f2ca-195c-8043-9676-c73330bf687b
Ancestors: ST80-ul.75
CompiledMethodTrailer phase 2.
=============== Diff against ST80-ul.75 ===============
Item was changed:
----- Method: ParagraphEditor>>compileSelectionFor:in: (in category 'do-its') -----
compileSelectionFor: anObject in: evalContext
+ | methodNode |
- | methodNode method |
methodNode := [Compiler new
compileNoPattern: self selectionAsStream
in: anObject class
context: evalContext
notifying: self
ifFail: [^nil]]
on: OutOfScopeNotification
do: [:ex | ex resume: true].
+
+ ^ methodNode generateWithTempNames.
+ !
- method := methodNode generate: #(0 0 0 0).
- ^method copyWithTempsFromMethodNode: methodNode!