X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add #greaseByteAt: and #greaseBytesCound implementations for Pharo 6
  • Loading branch information
theseion committed Oct 29, 2023
commit 65bc55e2ff5db4d2bfe9fd56fe6912cb39cf4596
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Grease-Pharo60-Core
greaseByteAt: index
^ self byteAt: index
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Grease-Pharo60-Core
greaseBytesCount
^ self bytesCount
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name" : "LargeInteger"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Grease-Pharo60-Core
greaseByteAt: index
^ self byteAt: index
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Grease-Pharo60-Core
greaseBytesCount
^ self bytesCount
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name" : "SmallInteger"
}
X Tutup