aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Hashable.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-10 16:42:27 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-10 16:43:34 +0100
commitc11646c40042404550eb983577c9e7096a40502a (patch)
tree6817bbac0648acb50b42ac91dc6474388ecb8077 /src/dotty/tools/dotc/core/Hashable.scala
parent7cfd3cad248f4b82da61d324c2724e779ddc5fe0 (diff)
downloaddotty-c11646c40042404550eb983577c9e7096a40502a.tar.gz
dotty-c11646c40042404550eb983577c9e7096a40502a.tar.bz2
dotty-c11646c40042404550eb983577c9e7096a40502a.zip
Make hash codes on type more predictable.
May help finding the partest issue.
Diffstat (limited to 'src/dotty/tools/dotc/core/Hashable.scala')
-rw-r--r--src/dotty/tools/dotc/core/Hashable.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Hashable.scala b/src/dotty/tools/dotc/core/Hashable.scala
index 3eb08d774..f1af1e67d 100644
--- a/src/dotty/tools/dotc/core/Hashable.scala
+++ b/src/dotty/tools/dotc/core/Hashable.scala
@@ -28,7 +28,7 @@ object Hashable {
trait Hashable {
import Hashable._
- protected def hashSeed: Int = getClass.hashCode
+ protected def hashSeed: Int = getClass.getSimpleName.hashCode
private def finishHash(hashCode: Int, arity: Int): Int =
avoidNotCached(hashing.finalizeHash(hashCode, arity))