-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue #175:move supportsUnicode to the platform class
- Loading branch information
Showing
3 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
7 changes: 4 additions & 3 deletions
7
...ormTest.class/instance/supportsUnicode.st → ...latform.class/instance/supportsUnicode.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
private | ||
encoding | ||
supportsUnicode | ||
"dynamically try to figure out whether the current dialect supports Unicode" | ||
|
||
^ [ | ||
String | ||
with: (Character value: 16r1F1F3) | ||
with: (Character value: 16r1F1F1). | ||
with: (Character codePoint: 16r1F1F3) | ||
with: (Character codePoint: 16r1F1F1). | ||
true | ||
] on: Error | ||
do: [ :error | false ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
SystemOrganization addCategory: #'Grease-Core'! | ||
SystemOrganization addCategory: #'Grease-Core-Collections'! | ||
SystemOrganization addCategory: #'Grease-Core-Exceptions'! | ||
SystemOrganization addCategory: #'Grease-Core-Text'! | ||
SystemOrganization addCategory: #'Grease-Core-Utilities'! | ||
self packageOrganizer ensurePackage: #'Grease-Core' withTags: #(#Collections #Exceptions #Text #Utilities)! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters