[squeak-dev] The Inbox: ShoutCore-ct.70.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 14 20:55:23 UTC 2019


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" ]!



More information about the Squeak-dev mailing list