On Saturday, 31 October 2015 at 16:38:58 UTC, bitwise wrote:
@synthesized void accept(this This)(Visitor v) { v.visit(this); }
I meant to remove "(this This)" as you don't need it if you can just do "typeof(this)" in the function body.
@synthesized void accept(Visitor v) {
v.visit(this);
}
Bit
