js: Obj.hash always returns 0 #1464
andy
30 Mar 2011
JavaScript doesn't provide hashcodes for Objects like Java/C# - so its gone unimplemented so far - basically relying on reference equality if you haven't overridden your hash/equals.
andy
30 Mar 2011
Promoted to ticket #1464 and assigned to andy
Lets track this as a ticket tho since we need to address this at some point.
dsav
9 Nov 2011
Great! There is also a related issue (http://fantom.org/sidewalk/topic/1485). I assume, it's not hard to fix it now, when hash is implemented. Could you please take a look on this?
dsav
30 Mar 2011
Default implementation of the hash method always returns 0 in JavaScript.
I tested on the following code:
@Js internal class EmptyObj { } @Js class HashTest { static Void hashTest() { EmptyObj[] t := [,] 10.times { t.add(EmptyObj()) } t.each { echo("Hash: $it.hash") } } }On Java, the hashes differ, on JS they are all 0.