Patrick Huber

Results 45 comments of Patrick Huber

I implemented the wsl check here https://github.com/patrickhuber/direnv/commit/9fff44de4cc78eea97ee209a284915f33d8862b3 I may need something similar for the target as I had to change that by hand during shell testing. It looks like I'm...

So looks like when you invoke a windows executable from wsl and you specify a file, the windows executable expects windows paths. So the example above changed to : ```bash...

Source Generators will probably be the way forward with this : https://docs.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/source-generators-overview

Thanks, I added an additional link and updated the link to the one you supplied.

Reading from the stream backwards should be a trivial implementation, but does something special need to be done to the grammar for this to work with the earley algorithm?

The algorithm seems pretty straight forward. There will need to be some thread safety injected in the chart object.

A new paper was published on this topic [LATE Ain’T Earley: A Faster Parallel Earley Parser](https://arxiv.org/pdf/1807.05642.pdf) It appears to be an adaptation of CYK parallel parsing, but specifically for Earley....

The Early algorithm will probably parse that grammar just fine without using presedence parsing rules. If you look at the parse forest that comes out of the GetParseForestRoot method call,...

Ok, read the forum and have a better idea of what you are trying to do. I'll have to think about this a bit and see how eto.parse implements it....

Is this going through the Canon lift and Canon lower functions of the component abi injected by one of the wasm tools (or tinygo) or is it just passing an...