Foiled by path-dependent types
- by Ladlestein
I'm having trouble using, in one trait, a Parser returned from a method in another trait. The compiler complains of a type mismatch and it appears to me that the problem is due to the path-dependent class. I'm not sure how to get what I want.
trait Outerparser extends RegexParsers {
def inner: Innerparser
def quoted[T](something: Parser[T])…