Noury Bouraqadi
Noury Bouraqadi
When I forget to set the proxy, and try to create a new image, the launcher displays a staled progress bar with a cancel button. But the cancel button is...
Tested on Mac OS High Sierra. 1- Create an image 2-open new image 3- Load some project using Iceberg 4- save & quit image 5- delete image It takes about...
Do we still need this dependency or what's in the image is enough?
`OrderedCollection new asPhxJsonString` - in Pharo results into `'{"class":"OrderedCollection","instance":[]}'` - in JS results into `'{"class":"Array","instance":[]}'` When serializing in JS and materializing in Pharo, we get an `Array` and hence we...
Thanks Torsten for reporting this issue. It seems that the change is only adding the pragma. This change marks the Pharo repo "dirty" (after loading)
Dictionaries are unordered. The test `PhxBridgedJsonSerialisationTests>>testSerializeIdentityDictionary` relies on a fixed order. This is why it fails sometimes, but not always
Association corresponding to removed key stays in place.
We should also be able to tag methods as `async`, maybe using a pragma such as ``. We need to have a placeholder for JS Promise class in Pharo, so...
The list of CSS classes attached to a DOM object is instance of `DOMTokenList`, which lacks Pharo methods for array manipluation as provided by `PjTArray`
We cannot create a set and add it to itself. The following code when evaluated in JavaScript answers 1 instead of 2. ```Smalltalk s := Set new. s add: 'A'....