Nicolas Cellier uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-nice.121.mcz==================== Summary ====================
Name: Compiler-nice.121
Author: nice
Time: 23 February 2010, 5:50:41.052 pm
UUID: e13bfbb0-f02a-484c-b76e-e6f8f07e8917
Ancestors: Compiler-nice.120
Change requestorOffset initialization order so that I can evaluate
#(1--2) and get automatic correction working
=============== Diff against Compiler-nice.120 ===============
Item was changed:
----- Method: Parser>>init:notifying:failBlock: (in category 'private') -----
init: sourceStream notifying: req failBlock: aBlock
requestor := req.
failBlock := aBlock.
+ requestorOffset := 0.
super scan: sourceStream.
prevMark := hereMark := mark.
- requestorOffset := 0.
self advance!