Skip to content

Commit bb43166

Browse files
author
Johan Brichau
committed
Compatibility for Pharo6
1 parent ff9f6e1 commit bb43166

File tree

271 files changed

+1884
-730
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+1884
-730
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"separateMethodMetaAndSource" : false,
3+
"noMethodMetaData" : true,
4+
"useCypressPropertiesFile" : true
5+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*Grease-Pharo60-Core
2+
fixCallbackTemps
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*Grease-Pharo60-Core
2+
valueWithPossibleArguments: anArray
3+
| args |
4+
(anArray size == self numArgs)
5+
ifTrue: [ ^ self valueWithArguments: anArray ].
6+
args := Array new: self numArgs.
7+
args replaceFrom: 1
8+
to: (anArray size min: args size)
9+
with: anArray
10+
startingAt: 1.
11+
^ self valueWithArguments: args
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"instance" : {
3+
"fixCallbackTemps" : "lr 4/8/2009 13:33",
4+
"valueWithPossibleArguments:" : "lr 4/8/2009 13:36"
5+
},
6+
"class" : { }
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name" : "BlockClosure"
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-Pharo60-Core
2+
greaseString
3+
"ByteArrays should not automatically be converted to Strings. You should use a GRCodec for this."
4+
^ self printString
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"instance" : {
3+
"greaseString" : "jf 9/30/2009 01:10"
4+
},
5+
"class" : { }
6+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name" : "ByteArray"
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-Pharo60-Core
2+
greaseInteger
3+
"Answer an unicode code point of the receiver."
4+
^ self charCode
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"instance" : {
3+
"greaseInteger" : "jf 9/30/2009 01:04"
4+
},
5+
"class" : { }
6+
}

0 commit comments

Comments
 (0)