You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Pharo7, it seems the use of PluggableDictionary has been replaced by OrderedDictionary in some places (e.g. Collection>>#groupedBy). However, Seaside does not define correct json conversion for instances of OrderedDictionary. For example, the following code snippet:
OrderedDictionary existed before but since it's now used in key methods of the image to construct dictionaries (like #groupedBy), we should implement the necessary json and javascript conversion methods on it.
The text was updated successfully, but these errors were encountered:
In Pharo7, it seems the use of
PluggableDictionary
has been replaced byOrderedDictionary
in some places (e.g.Collection>>#groupedBy
). However, Seaside does not define correct json conversion for instances ofOrderedDictionary
. For example, the following code snippet:Will produce:
["test1", "test2"]
This should be:
{"foo"->"test1", "bar" ->"test2"}
OrderedDictionary
existed before but since it's now used in key methods of the image to construct dictionaries (like#groupedBy
), we should implement the necessary json and javascript conversion methods on it.The text was updated successfully, but these errors were encountered: