Lex Li

Results 639 comments of Lex Li

There is no plan to fix the API for current 9.x/10.x releases. I am investigating Microsoft's latest API additions (`Span` and `System.IO.Pipelines`), so the next major release 11.x should contain...

It is questionable whether a timeout should be less than 500-ms. Personally I don't think that's practical.

I commented in #103 about a similar issue. Reproduced in https://travis-ci.org/lextm/restructuredtext-antlr/builds/323655907 ``` /home/travis/.nuget/packages/antlr4.codegenerator/4.6.5-beta001/build/Antlr4.CodeGenerator.targets(121,5): error AC1000: Unknown build error: Picked up _JAVA_OPTIONS: -Xmx2048m -Xms512m [/home/travis/build/lextm/restructuredtext-antlr/ReStructuredText/ReStructuredText.csproj] ``` So should `unset _JAVA_OPTIONS` be...

Well, it is very likely that you will end up with books such as [The Definitive ANTLR 4 Reference](https://pragprog.com/book/tpantlr2/the-definitive-antlr-4-reference) so as to learn ANTLR 4 in more details. However, I...

Microsoft's primary goal of designing .NET is to enable interoperation among languages, so when C# code can be generated from an ANTLR grammar file you don't need the duplicate tooling...

For [this specific place](https://github.com/tunnelvisionlabs/antlr4cs/blame/bc7fb74f3cf64f656cf2c9c1e05d71386e580a41/runtime/CSharp/Antlr4.Runtime/DefaultErrorStrategy.cs#L154) it is possible to use a class derived from `DefaultErrorStrategy` and override `ReportError` method to suppress the error in console. Not sure if this trick is...

When you are not familiar with the necessary bits, use the stable version instead of pre-release version first.

The Readme file is more developer oriented I think. You can read "Pre-release Builds" section, > To ensure **the highest level of reliability for developers targeting final releases of particular...

https://github.com/tunnelvisionlabs/antlr4cs/releases You should choose a release number from GitHub, and then use the packages from the same release.