[squeak-dev] The Trunk: Tools-nice.297.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 14 21:31:43 UTC 2011


Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-nice.297.mcz

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

Name: Tools-nice.297
Author: nice
Time: 14 February 2011, 10:31:17.869 pm
UUID: 1a8bf9be-8af3-4170-9fde-7cdecde74578
Ancestors: Tools-nice.296

Get rid of FakeClassPool adopt: because I don't like it.

=============== Diff against Tools-nice.296 ===============

Item was changed:
  ----- Method: ParagraphEditor>>debugIt (in category '*Tools') -----
  debugIt
  
  	| method receiver context |
  	(model respondsTo: #doItReceiver) 
  		ifTrue: 
+ 			[receiver := model doItReceiver.
- 			[FakeClassPool adopt: model selectedClass.
- 			receiver := model doItReceiver.
  			context := model doItContext]
  		ifFalse:
  			[receiver := context := nil].
  	self lineSelectAndEmptyCheck: [^self].
  	method := self compileSelectionFor: receiver in: context.
  	method notNil ifTrue:
+ 		[self debug: method receiver: receiver in: context].!
- 		[self debug: method receiver: receiver in: context].
- 	FakeClassPool adopt: nil!




More information about the Squeak-dev mailing list