The Trunk: Compiler-ar.114.mcz

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

The Trunk: Compiler-ar.114.mcz

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

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

Name: Compiler-ar.114
Author: ar
Time: 4 January 2010, 12:36:33 pm
UUID: 415ca0c9-3f8a-204f-950f-d09c6445de70
Ancestors: Compiler-ar.112

Make Etoys unloadable: Move Etoys content to Etoys package.

=============== Diff against Compiler-ar.112 ===============

Item was removed:
- ----- Method: ParseNode>>addCommentToMorph: (in category 'tiles') -----
- addCommentToMorph: aMorph
- | row |
- (self comment isNil or: [self comment isEmpty]) ifTrue: [^ self].
- row := aMorph addTextRow:
- (String streamContents: [:strm | self printCommentOn: strm indent: 1]).
- row firstSubmorph color: (SyntaxMorph translateColor: #comment).
- row parseNode: (self as: CommentNode).
- !

Item was removed:
- ----- Method: ParseNode>>currentValueIn: (in category 'tiles') -----
- currentValueIn: aContext
-
- ^nil!