I have a Scala object containing the definition of a type.
I am now willing to change the behavior of the type by overriding its equals method. Is it possibile?
The code I have right now is the following:
object CallGraph {
type CallTree = LinkedTree[Enter]
}
And I'd like to override the equal method for the CallTree type
class CallTree extends LinkedTree[Enter] { override def equals(x: Any) = ... }– Luigi Plinge Sep 17 '12 at 15:57