The Inbox: Compiler-ct.406.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.406.mcz

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

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

Name: Compiler-ct.406
Author: ct
Time: 29 June 2019, 11:38:56.93143 pm
UUID: d6e9e7fc-f54b-044d-bc18-790786074075
Ancestors: Compiler-ct.405

Fix SyntaxErrorNotification>>#messageText implementation (Error>>#messageText is never nil)

=============== Diff against Compiler-ct.405 ===============

Item was changed:
  ----- Method: SyntaxErrorNotification>>messageText (in category 'accessing') -----
  messageText
  ^ super messageText
+ ifEmpty: [messageText := code]!
- ifNil: [messageText := code]!