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

commits at source.squeak.org commits at source.squeak.org
Tue May 19 14:18:36 UTC 2020


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

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

Name: FFI-Kernel-mt.70
Author: mt
Time: 19 May 2020, 4:18:35.480992 pm
UUID: 77eeead7-5f0d-6c4c-99c1-fc879d8c79e6
Ancestors: FFI-Kernel-mt.69

Print the type for external data in tools so one can quickly recognize 'char*' etc.

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

Item was added:
+ ----- Method: ExternalData>>printOn: (in category 'printing') -----
+ printOn: stream
+ 
+ 	super printOn: stream.
+ 
+ 	stream
+ 		nextPut: $<;
+ 		print: type;
+ 		nextPut: $>.!



More information about the Squeak-dev mailing list