On Friday, 13 December 2013 at 10:17:49 UTC, Brian Schott wrote:
I've been working on the next attepmpt at a std.lexer / std.d.lexer recently. You can follow the progress on Github here: https://github.com/Hackerpilot/lexer-work
knit picking... but shouldn't:
size_t line() pure nothrow const @property { return _line; }
be more like:
@property size_t line() pure nothrow const { return _line; }
to be consistent with phobos coding style?
/Jonas
