Re: D Lexer

2012-08-08 Thread Andrej Mitrovic
On 10/23/11, Martin Nowak wrote: > I've written a fast and pretty complete D lexer > (https://gist.github.com/1262321). > > It is based on a generic lexer component which will generate efficient > matching > functions at compile time (https://gist.github.com/1255439). >

Re: D Lexer

2012-08-08 Thread Andrej Mitrovic
On 8/8/12, Andrej Mitrovic wrote: > dlexer.d(1547): Error: template instance > dlexer.putTokens!(string,LockingTextWriter) recursive expansion Speaking of errors, just what kind of error is this? What does it mean exactly? Is the error in user code or the compiler? putTokens is only called from o

Re: D Lexer

2012-08-09 Thread Martin Nowak
Which version did you last compile this in succesfully? Thanks. Try https://github.com/dawgfoto/lexer.

Re: D Lexer

2012-08-09 Thread Andrej Mitrovic
On 8/9/12, Martin Nowak wrote: >> Which version did you last compile this in succesfully? Thanks. > > Try https://github.com/dawgfoto/lexer. > Thanks! :)