-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"category" : "Grease-Pharo-Core", | ||
"category" : "Grease-Core", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
exceptions | ||
deprecationExceptionSet | ||
"Answer the exception set that should considered besides WADeprecation." | ||
^#() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
SystemOrganization addCategory: #'Grease-Core'! | ||
SystemOrganization addCategory: #'Grease-Core-Collections'! | ||
SystemOrganization addCategory: #'Grease-Core-Exceptions'! | ||
SystemOrganization addCategory: #'Grease-Core-Text'! | ||
SystemOrganization addCategory: #'Grease-Core-Utilities'! | ||
SystemOrganization addCategory: 'Grease-Core-Collections'! | ||
SystemOrganization addCategory: 'Grease-Core-Exceptions'! | ||
SystemOrganization addCategory: 'Grease-Core-Text'! | ||
SystemOrganization addCategory: 'Grease-Core-Utilities'! |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
exceptions | ||
deprecationExceptionSet | ||
^ Deprecation |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
streaming | ||
greaseNext: anInteger putAll: aCollection startingAt: startIndex | ||
| index | | ||
aCollection isByteString | ||
ifTrue: [ | ||
index := ByteString findFirstInString: aCollection inSet: Latin1ToUtf8Map startingAt: startIndex. | ||
(index = 0 or: [ index > (startIndex + anInteger - 1) ]) | ||
ifTrue: [ stream greaseNext: anInteger putAll: aCollection startingAt: startIndex ] | ||
ifFalse: [ super greaseNext: anInteger putAll: aCollection startingAt: startIndex ] ] | ||
ifTrue: [ self greaseNext: anInteger putAllFast: aCollection startingAt: startIndex ] | ||
ifFalse: [ super greaseNext: anInteger putAll: aCollection startingAt: startIndex ] |
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
file library | ||
removeSelector: aSymbol from: aClass | ||
aClass removeSelectorSilently: aSymbol | ||
aClass removeSelector: aSymbol |