[squeak-dev] The Trunk: Tools-eem.523.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 26 22:27:19 UTC 2014


Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.523.mcz

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

Name: Tools-eem.523
Author: eem
Time: 26 June 2014, 3:26:45.175 pm
UUID: a789c6b9-86e6-4800-bd80-e095ec48fdaf
Ancestors: Tools-eem.522

Fix explore & inspect method in CodeHolder and subclasses

=============== Diff against Tools-eem.522 ===============

Item was changed:
  ----- Method: CodeHolder>>exploreMethod (in category 'message functions') -----
  exploreMethod
+ 	(self selectedClassOrMetaClass
+ 		compiledMethodAt: self selectedMessageName
+ 		ifAbsent: []) ifNotNil:
+ 			[:method| method explore]!
- 	currentCompiledMethod notNil ifTrue:
- 		[currentCompiledMethod explore]!

Item was changed:
  ----- Method: CodeHolder>>inspectMethod (in category 'message functions') -----
  inspectMethod
+ 	(self selectedClassOrMetaClass
+ 		compiledMethodAt: self selectedMessageName
+ 		ifAbsent: []) ifNotNil:
+ 			[:method| method inspect]!
- 	currentCompiledMethod notNil ifTrue:
- 		[currentCompiledMethod inspect]!



More information about the Squeak-dev mailing list