had to fix the string hash for opal
This commit is contained in:
parent
4940bc41a3
commit
a8f3d5a634
@ -61,7 +61,15 @@ module Parfait
|
||||
end
|
||||
|
||||
def self.str_hash(str)
|
||||
str = str.hash
|
||||
if RUBY_ENGINE == "OPAL"
|
||||
hash = 5381
|
||||
str.to_s.each_char do |c|
|
||||
hash = ((hash << 5) + hash) + c.to_i; # hash * 33 + c without getting bignums
|
||||
end
|
||||
hash % (2 ** 51)
|
||||
else
|
||||
str.hash
|
||||
end
|
||||
end
|
||||
|
||||
def initialize( object_class , hash = {})
|
||||
|
Loading…
Reference in New Issue
Block a user