FFI: FFI-Kernel-mt.151.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FFI: FFI-Kernel-mt.151.mcz

commits-2
Marcel Taeumel uploaded a new version of FFI-Kernel to project FFI:
http://source.squeak.org/FFI/FFI-Kernel-mt.151.mcz

==================== Summary ====================

Name: FFI-Kernel-mt.151
Author: mt
Time: 16 May 2021, 7:46:20.55258 am
UUID: f2621e33-405f-8247-8385-299eb813579e
Ancestors: FFI-Kernel-mt.150

Fixes regression with array-vs-string comparision, which broke the VMMaker source generation. Sorry! :-)

=============== Diff against FFI-Kernel-mt.150 ===============

Item was removed:
- ----- Method: ByteString>>isArray (in category '*FFI-Kernel') -----
- isArray
- "Maybe move to Trunk?"
-
- ^ true!

Item was added:
+ ----- Method: ByteString>>isFFIArray (in category '*FFI-Kernel') -----
+ isFFIArray
+
+ ^ true!

Item was removed:
- ----- Method: ExternalData>>isArray (in category 'testing') -----
- isArray
-
- ^ true!

Item was added:
+ ----- Method: ExternalData>>isFFIArray (in category 'testing') -----
+ isFFIArray
+
+ ^ true!

Item was added:
+ ----- Method: Object>>isFFIArray (in category '*FFI-Kernel') -----
+ isFFIArray
+
+ ^ false!

Item was removed:
- ----- Method: RawBitsArray>>isArray (in category '*FFI-Kernel') -----
- isArray
- "Maybe move to Trunk?"
-
- ^ true!

Item was added:
+ ----- Method: RawBitsArray>>isFFIArray (in category '*FFI-Kernel') -----
+ isFFIArray
+
+ ^ true!