Ken Domino

Results 839 comments of Ken Domino

Sorry, I can't reproduce the issue for Cpp. Works fine for me. ``` 05/19-04:27:22 ~/issues/parens/brand-new/webidl $ trgen -t Cpp C:\msys64\home\Kenne\issues\parens\brand-new\webidl CSharp WebIDL.g4 success 0.0584789 Rendering template file from Cpp/build.ps1 to...

> Question: should I prefer an agnostic get/set for DollarOk as opposed to a property? > > Longer: Looking at how target-agnostic grammars have been written along with their base...

Hi @OleksiiKovalov , Visual Studio IDE (2019, 2022) isn't keeping pace with the changes in Language Server Protocol, and it's been difficult to work around the problems in VS2019 when...

Good idea. There should be several small LSP server examples. I will work on this after I complete the updates from the [spec](https://microsoft.github.io/language-server-protocol/specifications/specification-current/) since October 2020 to the library. There...

Yes, but it may be a while. There was someone who may have PP definitions into Clang ASTs, at least mentioned it. Will look into this.

Although it is noted in https://github.com/antlr/antlr4/issues/1006 and https://github.com/antlr/antlr4/issues/233 that there's no serialization of parse trees, it's easily remedied with a custom JSON serializer. So, this is the first step to...

I implemented a verbose json serializer and deserializer. Although this is just anecdotal evidence, writing out a serialization is very quick, but reconstructing the parse tree is not, based on...

On the implementation, I'll start first with the implementation I am now working on. 1) The serialization is a JSON file. The token stream is represented as an array of...

The best representation I can devise is a "canonical representation"(COCKAYNE, EJ. "Linear Algorithms on Recursive Representations of Trees." JOURNAL OF COMPUTER AND SYSTEM SCIENCES 18 (1979): 76-85.) Basically, it is...

I now have a FAST!!!! implementation for serialization/deserialization.