The Trunk: KernelTests-ul.343.mcz

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

The Trunk: KernelTests-ul.343.mcz

commits-2
Levente Uzonyi uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-ul.343.mcz

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

Name: KernelTests-ul.343
Author: ul
Time: 13 June 2018, 1:51:57.513665 am
UUID: 163d1af9-4bb8-4268-a9ed-28b4f84f18f2
Ancestors: KernelTests-ul.342

- do not log class creation from ClassVarScopeTest

=============== Diff against KernelTests-ul.342 ===============

Item was changed:
  ----- Method: ClassVarScopeTest>>createClass:superClass:classVariableNames: (in category 'private') -----
  createClass: aSymbol superClass: superClass classVariableNames: aString
 
+ ^SystemChangeNotifier uniqueInstance doSilently: [
+ ClassBuilder new
+ name: aSymbol
+ inEnvironment: environment
+ subclassOf: superClass
+ type: #normal
+ instanceVariableNames: ''
+ classVariableNames: aString
+ poolDictionaries: ''
+ category: 'Test' ]!
- ^ClassBuilder new
- name: aSymbol
- inEnvironment: environment
- subclassOf: superClass
- type: #normal
- instanceVariableNames: ''
- classVariableNames: aString
- poolDictionaries: ''
- category: 'Test'!