i have a class that takes an implicit parameter which is used by functions called inside class methods. i want to be able to either override that implicit parameter and have both the class and its inherited parent class have a reference to the same new implicit object.
making the Parent implicit a var and setting that to a new value successfully overrides the implicit in the parent, but not the child.
(this is similar to scala: override implicit parameter to constructor, except there is the added restriction that the override affect both child class and parent class.)
for example:
def outside(implicit x: Boolean) {
println(x)
}
class Parent(implicit var x: Boolean) {
def setImplicit() {
x = true
}
def callOutside {
outside
}
}
class Child(implicit x: Boolean) extends Parent {
override def callOutside {
outside
}
}
and then:
scala> val a = new Parent()(false)
a: Parent = Parent@c351f6d
scala> a.callOutside
false
scala> a.setImplicit()
scala> a.callOutside
true // <-- sees the new implicit correctly
scala> val b = new Child()(false)
b: Child = Child@68331dd0
scala> b.callOutside
false
scala> b.setImplicit()
scala> b.callOutside
false // <-- wrong, desire "true" instead
is there any way to get the desired behavior? doing things like making both Parent and Child implicit be a var doesn't seem to work. thanks!