Nicolas Cellier uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-nice.126.mcz==================== Summary ====================
Name: Compiler-nice.126
Author: nice
Time: 25 February 2010, 3:02:54.127 am
UUID: e08279be-3286-9144-a08f-c8debbbc6c25
Ancestors: Compiler-nice.125
Implement a Parser compatibility layer in Scanner: #notify:at:.
I used it for inserting NumberParser errorString...
Alas, it is not understood by Scanner, only by Parser.
Alternative #offEnd: lacks of precision regarding position, so I clearly prefer implementing the compatible message.
=============== Diff against Compiler-nice.125 ===============
Item was added:
+ ----- Method: Scanner>>notify:at: (in category 'error handling') -----
+ notify: string at: posiiton
+ "Parser compatible message"
+
+ ^self notify: string !