[squeak-dev] The Trunk: Kernel-nice.1327.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 10 16:14:35 UTC 2020


Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.1327.mcz

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

Name: Kernel-nice.1327
Author: nice
Time: 10 May 2020, 6:14:32.751642 pm
UUID: d1799f0b-e9b3-4aee-b3ca-a87fd702f2c6
Ancestors: Kernel-nice.1326

Be unsafe for enabling migration of ByteArray

=============== Diff against Kernel-nice.1326 ===============

Item was changed:
  ----- Method: ClassBuilder>>name:inEnvironment:subclassOf:type:instanceVariableNames:classVariableNames:poolDictionaries:category: (in category 'class definition') -----
  name: className inEnvironment: env subclassOf: newSuper type: type instanceVariableNames: instVarString classVariableNames: classVarString poolDictionaries: poolString category: category
  	"Define a new class in the given environment"
  	^self 
  		name: className 
  		inEnvironment: env 
  		subclassOf: newSuper 
  		type: type 
  		instanceVariableNames: instVarString 
  		classVariableNames: classVarString 
  		poolDictionaries: poolString 
  		category: category
+ 		unsafe: true!
- 		unsafe: false!



More information about the Squeak-dev mailing list