[squeak-dev] The Trunk: Collections-topa.807.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Sep 14 07:38:02 UTC 2018


Tobias Pape uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-topa.807.mcz

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

Name: Collections-topa.807
Author: topa
Time: 14 September 2018, 9:37:43.484317 am
UUID: fae1c8b3-8396-4790-a491-4e51b047bc49
Ancestors: Collections-topa.806

Revert for consistency and, subsequently, speed.

The correct fix is not as trivial and not fit in the beta phase.

Sorry, Ron.

=============== Diff against Collections-topa.806 ===============

Item was changed:
  ----- Method: Character class>>separators (in category 'instance creation') -----
  separators
+ 	"Answer a collection of the standard ASCII separator characters."
- 	"Answer a collection of space-like separator characters.
- 	Note that we do not consider spaces in >8bit code points yet.
- 	"
  
+ 	^ #(32 "space"
- 	^ #(9 "tab"
- 		10 "line feed"
- 		12 "form feed"
  		13 "cr"
+ 		9 "tab"
+ 		10 "line feed"
+ 		12 "form feed")
+ 		collect: [:v | Character value: v] as: String!
- 		32 "space"
- 		160 "non-breaking space, see Unicode Z general category")
- 		collect: [:v | Character value: v] as: String
- " To be considered:
- 16r1680 OGHAM SPACE MARK
- 16r2000 EN QUAD
- 16r2001 EM QUAD
- 16r2002 EN SPACE
- 16r2003 EM SPACE
- 16r2004 THREE-PER-EM SPACE
- 16r2005 FOUR-PER-EM SPACE
- 16r2006 SIX-PER-EM SPACE
- 16r2007 FIGURE SPACE
- 16r2008 PUNCTUATION SPACE
- 16r2009 THIN SPACE
- 16r200A HAIR SPACE
- 16r2028 LINE SEPARATOR
- 16r2029 PARAGRAPH SEPARATOR
- 16r202F NARROW NO-BREAK SPACE
- 16r205F MEDIUM MATHEMATICAL SPACE
- 16r3000 IDEOGRAPHIC SPACE
- "!



More information about the Squeak-dev mailing list