The Inbox: Compiler-ct.405.mcz

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

The Inbox: Compiler-ct.405.mcz

commits-2
A new version of Compiler was added to project The Inbox:
http://source.squeak.org/inbox/Compiler-ct.405.mcz

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

Name: Compiler-ct.405
Author: ct
Time: 29 June 2019, 11:38:21.90343 pm
UUID: 500db9b5-d4f6-c24e-8e91-fea4521def76
Ancestors: Compiler-ct.404

Add resumption logic to SyntaxErrorNotification

=============== Diff against Compiler-ct.404 ===============

Item was added:
+ ----- Method: SyntaxErrorNotification>>isResumable (in category 'accessing') -----
+ isResumable
+
+ ^ true!

Item was added:
+ ----- Method: SyntaxErrorNotification>>resume: (in category 'accessing') -----
+ resume: source
+
+ self reparse: source notifying: nil ifFail: nil.
+ ^ super resumeUnchecked: self defaultResumeValue!