Hi I have the following method and I have my cursor -MY CURSOR HERE- I select the menu run to here and .... I exit the method. :(
Is run to here working in Pharo 70? I start to get worry about the number of bugs I get when using Pharo70. Stef fileOut "File out the receiver, to a file whose name is a function of the change-set name and a unique numeric tag." | nameToUse | self halt. self class promptForDefaultChangeSetDirectoryIfNecessary. nameToUse := (self defaultChangeSetDirectory / self name , 'cs') nextVersion basename. UIManager default showWaitCursorWhile: [ | internalStream | internalStream := (String new: 10000) writeStream. -MY CURSOR HERE- internalStream header; timeStamp. self fileOutPreambleOn: internalStream. self fileOutOn: internalStream. self fileOutPostscriptOn: internalStream. CodeExporter writeSourceCodeFrom: internalStream baseName: (nameToUse copyFrom: 1 to: nameToUse size - 3) isSt: false ]
