A new version of ShoutTests was added to project The Inbox:
http://source.squeak.org/inbox/ShoutTests-ct.34.mcz==================== Summary ====================
Name: ShoutTests-ct.34
Author: ct
Time: 7 April 2021, 5:20:15.847598 pm
UUID: a7f39f26-a6fb-f44e-aabb-931714b56ed8
Ancestors: ShoutTests-mt.33
Document a present bug that occurs when styling a method that contains multiple unary selectors after a cascade.
=============== Diff against ShoutTests-mt.33 ===============
Item was added:
+ ----- Method: SHParserST80Test>>testChainAfterCascade (in category 'tests') -----
+ testChainAfterCascade
+
+ | types s |
+ s := 'x 1 positive; negative not'.
+
+ types := self tokenTypesIn: s.
+
+ self
+ assert: #(patternUnary number unary cascadeSeparator unary excessCode)
+ equals: types.!