Comment 0 for bug 631522

Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Something like this :

interface Visitor<R,C>{

    R visit(Path<?> path, C context);

   // ...
}

interface Expression {

  <R,C> R accept(Visitor<R,C> visitor);

}

This way a context can be supplied and something can be returned.