proper structural equality;
authorwenzelm
Fri, 27 Nov 2020 19:56:30 +0100
changeset 72746 049a71febf05
parent 72745 5a6f7212fc4d
child 72747 5f9d66155081
proper structural equality;
src/Pure/General/path.scala
--- a/src/Pure/General/path.scala	Fri Nov 27 16:44:36 2020 +0100
+++ b/src/Pure/General/path.scala	Fri Nov 27 19:56:30 2020 +0100
@@ -150,8 +150,15 @@
 }
 
 
-final class Path private(private val elems: List[Path.Elem]) // reversed elements
+final class Path private(protected val elems: List[Path.Elem]) // reversed elements
 {
+  override def hashCode: Int = elems.hashCode
+  override def equals(that: Any): Boolean =
+    that match {
+      case other: Path => elems == other.elems
+      case _ => false
+    }
+
   def is_current: Boolean = elems.isEmpty
   def is_absolute: Boolean = elems.nonEmpty && elems.last.isInstanceOf[Path.Root]
   def is_root: Boolean = elems match { case List(Path.Root(_)) => true case _ => false }