We should report and we should fix. On Wed, Nov 8, 2017 at 11:59 PM, Tim Mackinnon <tim@testit.works> wrote:
I think it's broken in Pharo 6 too, as I often find it unreliable.
It's hard to know what should work anymore - we really need a stabilisation release to let the dust settle.
I'm always a bit reticent to report things as I'm not sure what you expect to work.
Tim
Sent from my iPhone
On 8 Nov 2017, at 20:40, Stephane Ducasse <stepharo.self@gmail.com> wrote:
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 ]