Igor Dejanović
Igor Dejanović
@lechat Thanks a lot for this contribution. It's a saver. I had to start debugger over and over with several watch expressions. Having to type them each time was really...
For reporting multiple syntax error in a single file a parser should be able to recover from an error and continue. To do error recovery parser state must be manipulated....
I agree. Error in modifying processors might impact further processing which might yield multiple false errors. Syntax error recovery is usually a heuristic algorithm so is very similar in that...
Would be nice to have but it is not easy in PEG packrat parser. For that to happen parser would have to restore its state where it expects `;` in...
Exactly. The idea is to keep layout information. In the [hello world example](http://textx.github.io/textX/stable/tutorials/hello_world/) in point 3 it is referred to as `syntactic noise`. Those parts could be kept e.g. as...
> Note that in most languages, comments are handled per rule. Can you elaborate more on this please. Not sure that I follow. If I understand the example with C...
@fzipi Totally agree. Actually, that is something I had been planning for quite some time. It requires [some work in the Arpeggio](https://github.com/textX/Arpeggio/blob/master/arpeggio/__init__.py#L721). I thought that the issue for this is...
@gborghesan Is the @goto40 fix on the `master` branch now works for you?
Sure. Please do. I'm interested what is the situation now.
Both Sphinx and MkDocs are tools that compile the documentation from markdown format (or ReST for Sphinx) to HTML (or other outputs). ReadTheDocs is a service/site that can pull project...