'From Squeak3.1alpha of 28 February 2001 [latest update: #4206] on 17 July 2001 at 7:13:22 pm'! "Change Set: tilesToFireFix-sw Date: 17 July 2001 Author: Scott Wallace Fixes the 'hand me tiles to fire this button' feature, which appears to have gotten broken a while ago."! !MethodInterface class methodsFor: 'utilities' stamp: 'sw 7/17/2001 19:08'! firingInterface "Answer an instance of the receiver representing #fire" ^ self new selector: #fire type: nil setter: nil! ! !Morph methodsFor: 'debug and other' stamp: 'sw 7/17/2001 19:08'! handMeTilesToFire "Construct a phrase of tiles comprising a line of code that will 'fire' this object, and hand it to the user" ActiveHand attachMorph: (self assuredPlayer tilesToCall: MethodInterface firingInterface)! !