File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed
GRPlatform.class/instance
Grease-Tests-Core.package/GRPlatformTest.class/instance Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1- private
1+ encoding
22supportsUnicode
33 " dynamically try to figure out whether the current dialect supports Unicode"
4+
45 ^ [
56 String
6- with: (Character value : 16r1F1F3)
7- with: (Character value : 16r1F1F1).
7+ with: (Character codePoint : 16r1F1F3)
8+ with: (Character codePoint : 16r1F1F1).
89 true
910 ] on: Error
1011 do: [ :error | false ]
Original file line number Diff line number Diff line change 1- SystemOrganization addCategory: #' Grease-Core' !
2- SystemOrganization addCategory: #' Grease-Core-Collections' !
3- SystemOrganization addCategory: #' Grease-Core-Exceptions' !
4- SystemOrganization addCategory: #' Grease-Core-Text' !
5- SystemOrganization addCategory: #' Grease-Core-Utilities' !
1+ self packageOrganizer ensurePackage: #' Grease-Core' withTags: #(#Collections #Exceptions #Text #Utilities) !
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ tests-file library
22testCompileAsciiString
33 | selector expected source |
44
5- self supportsUnicode ifFalse: [
5+ GRPlatform current supportsUnicode ifFalse: [
66 ^ self ].
77
88 selector := #stringMethod .
You can’t perform that action at this time.
0 commit comments