pharo
pharo copied to clipboard
Pharo is a dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk.
Internal users of asOrderedCollection should be rewritten because asOrderedCollection is deprecated
``` Object >> asOrderedCollection self deprecated: 'The usage of this method is not recommended. We want to have a smaller Object api. We will remove this method in the next...
**Describe the bug** `RBParser >> parseExpression:` could return a sequence node. **To Reproduce** ```smalltalk RBParser parseExpression: ' 1+2. 2+3.' ``` **Expected behavior** An error **Version information:** Pharo 9.0.0 Build information:...
**Describe the request** Process has methods like `isSuspended`, `isTerminated`, `isActiveProcess`, but they do not discriminate between all possible states a process can be in, and it's not always clear how...
Form>>#storeResourceOn: is currently an extension from graphics We should check if it could be made part of Kernel (or just use storeString)
Right now we can enter an expression and select a class and we see the result. But I cannot just change the expression and see the result. We have to...
So we lost this method from P11.
**Describe the request** The taskbar is much more useful if it's easy to tell what kind of window each slot represents at a glance, but not all tools have a...
**Bug description** The context menu "Source code - Browse" in the source code editor related to a given AST does not do what is expected. It opens the class to...
Implement a ProperMethodCategorizationTest>>#testDisplayStringMethodNeedsToBeInDisplayingProtocol ```Smalltalk testDisplayStringMethodNeedsToBeInDisplayingProtocol "The #displayString method should be in method protocol 'displaying'" self assureAll: #displayString areCategorizedIn: #displaying whenSubclassOf: Object ``` Requires https://github.com/pharo-project/pharo/issues/16050 to be fixed first and other...
Provide a release test ProperMethodCategorizationTest>>#testStoreStringMethodNeedsToBeInStoringProtocol ```Smalltalk testStoreStringMethodNeedsToBeInStoringProtocol "The #storeString method should be in method protocol 'storing'" self assureAll: #storeString areCategorizedIn: #storing whenSubclassOf: Object ```