adri09070

Results 21 issues of adri09070

Fixes https://github.com/pharo-project/pharo/issues/15430 Needs https://github.com/pharo-spec/Spec/pull/1540 to be merged first

enhancement
debugger

Fixes #722 Test corresponding to this PR that needs to be merged first: https://github.com/pharo-project/pharo/pull/16319

bug
debugger

If you have a bloc closure like this, called via a method ```Smalltalk MyClass>>mySortBlock ^ [ :a :b | a < b ] ``` Then, you can paste this code...

bug
debugger

Fixes #584 The whole discussion is in this issue. To fasten the navigation of the debugger stack, I removed the debugger inspector selection remembrance mechanism because it : - makes...

decision needed

``` StDebuggerExtensionMechanismTest ✗ #testUsesExtensions (17ms) #isDead was sent to nil UndefinedObject(Object)>>doesNotUnderstand: #isDead StSindarinBytecodeDebuggerPresenter>>updatePresenter StSindarinBytecodeDebuggerPresenter(SpPresenter)>>initializePrivateHooks StSindarinBytecodeDebuggerPresenter(SpPresenter)>>initialize StSindarinBytecodeDebuggerPresenter class(SpPresenter class)>>owner:on: StDebugger(SpPresenter)>>instantiate:on: StDebugger>>instantiateExtensionToolsPage: [ extensionToolsNotebook pages: { (self instantiateExtensionToolsPage: extensionToggled) } asOrderedCollection. extensionToolsNotebook...

bug
debugger

**How to reproduce the bug** 1) Open a playground with CMD+O+W. 2) Open a debugger, for example by executing `1 / 0` in the playground. 3) In the inspector, select...

bug
debugger

**How to reproduce the bug:** Class hierarchy: ![image](https://user-images.githubusercontent.com/97704417/214063232-209b8ac0-ea51-41f7-a485-dfa7d0d09ff3.png) ![image](https://user-images.githubusercontent.com/97704417/214063350-19b8c589-8381-4e58-a54d-5a1cc795f73c.png) In a playground: ```Smalltalk obj := B new. #Do it obj titi #Debug it ``` In the debugger, perform stepInto to...

enhancement
debugger

`BlockCannotReturn` error has the "resumable" property so when this error happens, a debugger opens and the user can proceed the execution and ignore the error. However, doing so causes the...

Is there any reason why this is the case? I think that the `StDebuggerContextInteractionModel` should be removed OR become a subclass of `SpContextInteractionModel` if my PR to add bindings into...

Fixes #16743 **Description:** When modifying in the debugger a method with a debug point in it, it would reinstall the method correctly in the debugger (which is correct) while reinstalling...