X Tutup
Skip to content

Commit 94f262d

Browse files
author
Johan Brichau
committed
rename package Pharo10 to Pharo100 to avoid confusion with Pharo1
1 parent db79fe7 commit 94f262d

File tree

173 files changed

+885
-3
lines changed

Some content is hidden

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

173 files changed

+885
-3
lines changed

repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ baselinePharo: spec
6666
for: #(#'pharo10.x')
6767
do: [
6868
spec
69-
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo10-Core') ];
69+
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo100-Core') ];
7070
package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ];
7171
package: 'Grease-Tests-Core'
7272
with: [ spec
73-
requires: #('Grease-Pharo10-Core');
73+
requires: #('Grease-Pharo100-Core');
7474
includes: #('Grease-Tests-Pharo-Core') ];
75-
package: 'Grease-Pharo10-Core' with: [ spec requires: #('Grease-Core') ];
75+
package: 'Grease-Pharo100-Core' with: [ spec requires: #('Grease-Core') ];
7676
package: 'Grease-Pharo90-Slime' with: [ spec requires: #('Grease-Core') ];
7777
package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo90-Slime') ].
7878

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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Grease-Pharo100-Core
2+
fullName
3+
"In VW, will include the namespace"
4+
5+
^ self name
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name" : "Behavior"
3+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*Grease-Pharo100-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: 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-Pharo100-Core
2+
greaseString
3+
"ByteArrays should not automatically be converted to Strings. You should use a GRCodec for this."
4+
^ self printString
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-Pharo100-Core
2+
greaseInteger
3+
"Answer an unicode code point of the receiver."
4+
^ self charCode
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name" : "Character"
3+
}

0 commit comments

Comments
 (0)
X Tutup