-
Notifications
You must be signed in to change notification settings - Fork 22
Pharo 9 and Squeak fixes #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
4be8d8a
Fix for issue #101 (part 1)
7f248b7
Moved implementation of greaseAsMutator to Platform-specific package
8b91b7c
implement Symbol>>greaseAsMutator for Squeak
5b3bb9b
implement Symbol>>greaseAsMutator for Squeak (forgot to add the right…
d8f8ffa
Pharo9-specific packages
7203e18
Merge branch 'master' into asMutatorDeprecationInSqueak
fc21853
travis: add Squeak5.3
d0cfdb9
implement Symbol>>greaseAsMutator for Pharo3+4
1bb20d1
Symbol>>greaseAsMutator for Pharo6
77eb236
Merge 1bb20d18bce53a0e693f6a4e410d617921a087e6
c1c2e36
Symbol>>greaseAsMutator for Gemstone
cafef9b
fixed mistake in monticello metadata for Symbol>>greaseAsMutator for …
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
46 changes: 35 additions & 11 deletions
46
repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st
This file contains hidden or 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,39 +1,63 @@ | ||
| baselines | ||
| baselinePharo: spec | ||
| spec | ||
| for: #pharo | ||
| do: [ spec | ||
| package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; | ||
| package: 'Grease-Pharo40-Slime' with: [ spec requires: #('Grease-Core') ]; | ||
| package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo40-Slime') ]. | ||
| spec | ||
| group: 'Slime' with: #('Grease-Pharo40-Slime'); | ||
| group: 'Slime Tests' with: #('Grease-Tests-Slime') ]. | ||
|
|
||
| spec | ||
| for: #(#'pharo4.x' #'pharo5.x') | ||
| do: [ spec | ||
| package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo30-Core') ]; | ||
| package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; | ||
| package: 'Grease-Tests-Core' | ||
| with: [ spec | ||
| requires: #('Grease-Pharo30-Core'); | ||
| includes: #('Grease-Tests-Pharo-Core') ]; | ||
| package: 'Grease-Pharo30-Core' with: [ spec requires: #('Grease-Core') ] ]. | ||
|
|
||
| spec | ||
| for: #'pharo6.x' | ||
| do: [ spec | ||
| package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo60-Core') ]; | ||
| package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; | ||
| package: 'Grease-Tests-Core' | ||
| with: [ spec | ||
| requires: #('Grease-Pharo60-Core'); | ||
| includes: #('Grease-Tests-Pharo-Core') ]; | ||
| package: 'Grease-Pharo60-Core' with: [ spec requires: #('Grease-Core') ] ]. | ||
|
|
||
| spec | ||
| for: #(#'pharo7.x' #'pharo8.x' #'pharo9.x') | ||
| for: #(#'pharo7.x' #'pharo8.x') | ||
| do: [ spec | ||
| package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo70-Core') ]; | ||
| package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; | ||
| package: 'Grease-Tests-Core' | ||
| with: [ spec | ||
| requires: #('Grease-Pharo70-Core'); | ||
| includes: #('Grease-Tests-Pharo-Core') ]; | ||
| package: 'Grease-Pharo70-Core' with: [ spec requires: #('Grease-Core') ] ] | ||
| package: 'Grease-Pharo70-Core' with: [ spec requires: #('Grease-Core') ] ]. | ||
|
|
||
| spec | ||
| for: #(#'pharo4.x' #'pharo5.x' #'pharo6.x' #'pharo7.x' #'pharo8.x') | ||
| do: [ | ||
| spec | ||
| package: 'Grease-Pharo40-Slime' with: [ spec requires: #('Grease-Core') ]; | ||
| package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo40-Slime') ]. | ||
| spec | ||
| group: 'Slime' with: #('Grease-Pharo40-Slime'); | ||
| group: 'Slime Tests' with: #('Grease-Tests-Slime') ]. | ||
|
|
||
| spec | ||
| for: #'pharo9.x' | ||
| do: [ | ||
| spec | ||
| package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo90-Core') ]; | ||
| package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; | ||
| package: 'Grease-Tests-Core' | ||
| with: [ spec | ||
| requires: #('Grease-Pharo90-Core'); | ||
| includes: #('Grease-Tests-Pharo-Core') ]; | ||
| package: 'Grease-Pharo90-Core' with: [ spec requires: #('Grease-Core') ]; | ||
| package: 'Grease-Pharo90-Slime' with: [ spec requires: #('Grease-Core') ]; | ||
| package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo90-Slime') ]. | ||
|
|
||
| spec | ||
| group: 'Slime' with: #('Grease-Pharo90-Slime'); | ||
| group: 'Slime Tests' with: #('Grease-Tests-Slime') ]. | ||
3 changes: 3 additions & 0 deletions
3
repository/Grease-GemStone-Core.package/Symbol.extension/instance/greaseAsMutator.st
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| *grease-gemstone-Core | ||
| greaseAsMutator | ||
| ^ self asMutator |
3 changes: 3 additions & 0 deletions
3
repository/Grease-GemStone-Core.package/Symbol.extension/properties.json
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "name" : "Symbol" | ||
| } |
This file contains hidden or 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,4 +1,5 @@ | ||
| { | ||
| "noMethodMetaData" : true, | ||
| "separateMethodMetaAndSource" : false, | ||
| "useCypressPropertiesFile" : true } | ||
| "noMethodMetaData" : true, | ||
| "useCypressPropertiesFile" : true | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/BlockClosure.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "BlockClosure" } | ||
| "name" : "BlockClosure" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/ByteArray.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "ByteArray" } | ||
| "name" : "ByteArray" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/Character.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "Character" } | ||
| "name" : "Character" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/Collection.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "Collection" } | ||
| "name" : "Collection" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/Duration.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "Duration" } | ||
| "name" : "Duration" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/GRDelegatingStream.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "GRDelegatingStream" } | ||
| "name" : "GRDelegatingStream" | ||
| } |
19 changes: 8 additions & 11 deletions
19
repository/Grease-Pharo30-Core.package/GRDynamicVariable.class/properties.json
This file contains hidden or 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,14 +1,11 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "MaxLeske 5/16/2017 22:05", | ||
| "instvars" : [ | ||
| ], | ||
| "name" : "GRDynamicVariable", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "DynamicVariable", | ||
| "type" : "normal" } | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ ], | ||
| "name" : "GRDynamicVariable", | ||
| "type" : "normal" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/GRPackage.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "GRPackage" } | ||
| "name" : "GRPackage" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoConverterCodecStream.class/properties.json
This file contains hidden or 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,14 +1,13 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "pmm 6/25/2012 20:22", | ||
| "super" : "GRCodecStream", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ | ||
| "converter" ], | ||
| "converter" | ||
| ], | ||
| "name" : "GRPharoConverterCodecStream", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRCodecStream", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoGenericCodec.class/properties.json
This file contains hidden or 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,15 +1,14 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "", | ||
| "super" : "GRCodec", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ | ||
| "name", | ||
| "urlCodec" ], | ||
| "urlCodec" | ||
| ], | ||
| "name" : "GRPharoGenericCodec", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRCodec", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoLatin1Codec.class/properties.json
This file contains hidden or 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,14 +1,13 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "<historical>", | ||
| "super" : "GRNullCodec", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ | ||
| "name" ], | ||
| "name" | ||
| ], | ||
| "name" : "GRPharoLatin1Codec", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRNullCodec", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
19 changes: 8 additions & 11 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoLatin1CodecStream.class/properties.json
This file contains hidden or 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,14 +1,11 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "<historical>", | ||
| "instvars" : [ | ||
| ], | ||
| "name" : "GRPharoLatin1CodecStream", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRNullCodecStream", | ||
| "type" : "normal" } | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ ], | ||
| "name" : "GRPharoLatin1CodecStream", | ||
| "type" : "normal" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoPlatform.class/properties.json
This file contains hidden or 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,15 +1,14 @@ | ||
| { | ||
| "commentStamp" : "pmm 6/1/2008 01:03", | ||
| "super" : "GRPlatform", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ | ||
| "UrlTable", | ||
| "XmlTable" ], | ||
| "commentStamp" : "pmm 6/1/2008 01:03", | ||
| "instvars" : [ | ||
| ], | ||
| "XmlTable" | ||
| ], | ||
| "instvars" : [ ], | ||
| "name" : "GRPharoPlatform", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRPlatform", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoRandomProvider.class/properties.json
This file contains hidden or 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,15 +1,14 @@ | ||
| { | ||
| "commentStamp" : "", | ||
| "super" : "GRObject", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| "mutex", | ||
| "generator" ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "", | ||
| "instvars" : [ | ||
| ], | ||
| "generator" | ||
| ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ ], | ||
| "name" : "GRPharoRandomProvider", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRObject", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
19 changes: 8 additions & 11 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoUtf8Codec.class/properties.json
This file contains hidden or 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,14 +1,11 @@ | ||
| { | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classvars" : [ | ||
| ], | ||
| "commentStamp" : "pmm 2/20/2009 12:51", | ||
| "instvars" : [ | ||
| ], | ||
| "name" : "GRPharoUtf8Codec", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRCodec", | ||
| "type" : "normal" } | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ ], | ||
| "instvars" : [ ], | ||
| "name" : "GRPharoUtf8Codec", | ||
| "type" : "normal" | ||
| } |
19 changes: 9 additions & 10 deletions
19
repository/Grease-Pharo30-Core.package/GRPharoUtf8CodecStream.class/properties.json
This file contains hidden or 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,15 +1,14 @@ | ||
| { | ||
| "commentStamp" : "pmm 2/20/2009 12:27", | ||
| "super" : "GRPharoConverterCodecStream", | ||
| "category" : "Grease-Pharo30-Core", | ||
| "classinstvars" : [ | ||
| ], | ||
| "classinstvars" : [ ], | ||
| "pools" : [ ], | ||
| "classvars" : [ | ||
| "Latin1ToUtf8Encodings", | ||
| "Latin1ToUtf8Map" ], | ||
| "commentStamp" : "pmm 2/20/2009 12:27", | ||
| "instvars" : [ | ||
| ], | ||
| "Latin1ToUtf8Map" | ||
| ], | ||
| "instvars" : [ ], | ||
| "name" : "GRPharoUtf8CodecStream", | ||
| "pools" : [ | ||
| ], | ||
| "super" : "GRPharoConverterCodecStream", | ||
| "type" : "normal" } | ||
| "type" : "normal" | ||
| } |
3 changes: 2 additions & 1 deletion
3
repository/Grease-Pharo30-Core.package/GRSmallDictionary.extension/properties.json
This file contains hidden or 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,2 +1,3 @@ | ||
| { | ||
| "name" : "GRSmallDictionary" } | ||
| "name" : "GRSmallDictionary" | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.