A new version of ShoutCore was added to project The Inbox:
http://source.squeak.org/inbox/ShoutCore-ct.70.mcz==================== Summary ====================
Name: ShoutCore-ct.70
Author: ct
Time: 14 August 2019, 10:55:21.0784 pm
UUID: e76d8ac6-fbf7-e549-b8b8-3c88d853e957
Ancestors: ShoutCore-ct.69
Fix ShoutCore-ct.69 with a missing #not, sorry
=============== Diff against ShoutCore-ct.69 ===============
Item was changed:
----- Method: SHParserST80>>parseBlockArguments (in category 'parse') -----
parseBlockArguments
currentTokenFirst == $: ifFalse: [ ^self ].
[ currentTokenFirst == $: ] whileTrue: [
self
scanPast: #blockArgColon;
parseArgument: #blockPatternArg ].
+ ((self parseVerticalBarForTemporaries: #blockArgsBar) not and: [
- ((self parseVerticalBarForTemporaries: #blockArgsBar) and: [
currentTokenFirst ~= $] ])
+ ifTrue: [ self fail ": Missing block args bar" ]!
- ifFalse: [
- self fail ": Missing block args bar" ]!