The Trunk: Kernel-nice.1327.mcz

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

The Trunk: Kernel-nice.1327.mcz

commits-2
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!