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
identityHashCode for JS and WasmJS are broken. See #273
In short, implementations of this function for JS and WasmJS don't work the same way as for e.g. the JVM because there can be primitive types that cannot be extended in runtime, and no auto-boxing is implemented there.
This issue likely doesn't affect kaml which uses lower-level API.
The text was updated successfully, but these errors were encountered:
This PR migrates tests for the `representer` package to common sources.
This should provide some coverage for `identityHashCode` function that
does not work correctly on all platforms.
Part of #269 and
#279.
identityHashCode
for JS and WasmJS are broken. See #273In short, implementations of this function for JS and WasmJS don't work the same way as for e.g. the JVM because there can be primitive types that cannot be extended in runtime, and no auto-boxing is implemented there.
This issue likely doesn't affect kaml which uses lower-level API.
The text was updated successfully, but these errors were encountered: