[squeak-dev] FFI: FFI-Kernel-mt.151.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 16 05:46:22 UTC 2021


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!



More information about the Squeak-dev mailing list