Andrei Chiș
Andrei Chiș
The following code snippet loads 100000 classes and takes in Pharo 10 a long time (around 1 or 2 hours). ``` 1 to: 100000 do: [:i | Object subclass: (#Foo...
Currently we handle unknown snippet types. However, we also have custom page types, so we should also handle unknown page types. We could add an unknown page type that we...
Here the method createDefaultEventsGroup is defined in a superclass, but we want to override it in this class.
Below we remove an instance variable and change the superclass to one containing that variable. Now performing the refactoring has no effect, and no change seems to be applied.
We should be able to remove attributes even if they are referenced in methods
This should return true: ``` announcer := Announcer new. values := OrderedCollection new. announcer when: Announcement do: [ :anAnnouncement | values add: anAnnouncement ]. announcer announce: Announcement. values size =...
Notifications for remote jobs should not throw errors in case the PharoLink connection is no longer active.
When inspecting instances of PharoLinkProxyObject we show both object views and proxy views in the same inspector. We should have two different inspector tools, one for the object views and...
**Bug description** When comparing two compiled methods that have the same code but different selectors, they can either be equal of different depending on whether or not they have pragmas....