The Trunk: ToolBuilder-SUnit-mt.20.mcz

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

The Trunk: ToolBuilder-SUnit-mt.20.mcz

commits-2
Marcel Taeumel uploaded a new version of ToolBuilder-SUnit to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-SUnit-mt.20.mcz

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

Name: ToolBuilder-SUnit-mt.20
Author: mt
Time: 15 November 2019, 4:32:12.21533 pm
UUID: 42ab408c-6728-6749-8f5f-2eb2588936ff
Ancestors: ToolBuilder-SUnit-fbs.19

Updates widget stubs for tests.

=============== Diff against ToolBuilder-SUnit-fbs.19 ===============

Item was added:
+ ----- Method: TreeNodeStub>>matchesItem: (in category 'private') -----
+ matchesItem: anItem
+ ^ self item = anItem!

Item was changed:
  ----- Method: TreeNodeStub>>selectPath: (in category 'private') -----
  selectPath: anArray
  | child |
  anArray isEmpty ifTrue: [^ self select].
+ child := self children detect: [:ea | ea matchesItem: anArray first] ifNone: [^ self select].
- child := self children detect: [:ea | ea matches: anArray first] ifNone: [^ self select].
  child selectPath: anArray allButFirst.!

Item was changed:
  ----- Method: TreeStub>>setSpec: (in category 'initialize-release') -----
  setSpec: aSpec
  super setSpec: aSpec.
+ self update: spec roots.
+ self update: spec getSelectedPath.!
- self update: spec roots!