Marcel Taeumel uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-mt.80.mcz==================== Summary ====================
Name: ShoutCore-mt.80
Author: mt
Time: 14 June 2020, 8:26:07.250385 am
UUID: 22233b7f-bd5c-fa4b-ace8-06e4db659dc8
Ancestors: ShoutCore-mt.79
Fixes a regression. When you are just writing a method and there comes no token after '<', we should not even try parsing any further.
=============== Diff against ShoutCore-mt.79 ===============
Item was changed:
----- Method: SHParserST80>>parsePragmaSequence (in category 'parse pragma') -----
parsePragmaSequence
[currentToken = '<' ]
whileTrue: [
self scanPast: #primitiveOrExternalCallStart.
+ currentToken
+ ifNotNil: [self parsePragmaStatement]
+ ifNil: [self fail]].!
- self parsePragmaStatement].!