VM Maker: CogTools-eem.68.mcz

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

VM Maker: CogTools-eem.68.mcz

commits-2
 
Eliot Miranda uploaded a new version of CogTools to project VM Maker:
http://source.squeak.org/VMMaker/CogTools-eem.68.mcz

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

Name: CogTools-eem.68
Author: eem
Time: 4 March 2014, 11:58:47.539 am
UUID: bcd0254f-8fee-4834-a9fd-af4b0739751f
Ancestors: CogTools-eem.67

Use UIManager>>edit:label: instead of the now
missing String>>openInWorkspaceWithTitle:

=============== Diff against CogTools-eem.67 ===============

Item was changed:
  ----- Method: VMProfiler>>interpreterReport: (in category 'reports') -----
  interpreterReport: justWeird
+ UIManager default
+ edit: (String streamContents: [:s| self interpReport: s])
+ label: 'Interpreter Labels by Cost'!
- (String streamContents: [:s| self interpReport: s]) openInWorkspaceWithTitle: 'Interpreter Labels by Cost'!

Item was changed:
  ----- Method: VMProfiler>>vmReport: (in category 'reports') -----
  vmReport: justWeird
+ UIManager default
+ edit: (String streamContents: [:s| self report: s])
+ label: 'VM Functions by Cost'!
- (String streamContents: [:s| self report: s]) openInWorkspaceWithTitle: 'VM Functions by Cost'!