Patrick Huber

Results 45 comments of Patrick Huber

** Edit simplifying some interfaces to structs ** I stumbled upon this issue after writing the following library that I think could serve as a good example of the "sealed"...

Do you have a particular icon in mind? If not I'll just push a generic "P" in a box or hexigon.

For all of the ABNF, EBNF and BNF code in the framework, I'm planning on pulling out these into RFC compliant assemblies and releasing them as distinct nuget packages. I'm...

Do you have links to the grammar definitions for these languages? Here is what I found based on brief googling: ### Gold Parser Language [Productions](http://www.goldparser.org/doc/grammars/define-rules.htm) [Terminals](http://www.goldparser.org/doc/grammars/define-terminals.htm) [Character Sets](http://www.goldparser.org/doc/grammars/define-sets.htm) ### Antlr...

Ok, will this grammar do for antlrcs? https://github.com/antlr/grammars-v3/blob/master/Antlrv3/ANTLRv3.g

I purchased the paper a while back, but didn't spend time working on the implementation. If I remember correctly, the ebnf syntax is currently faked by generating node names during...

That is true, you would have to unwind the computed grammar rule post parse during AST evaluation. I do something similar with a single pass disambiguation algorithm. Another work around...

You can also binarize the forest which is what the SPPF implementation based off of Elizabeth Scott's paper does. I think the important part here is going to be traversing...

I managed to use a coredns config map to work around this issue. Sending all requests to the login.microsoftonline.com domain to cloudflare 1.1.1.1 > coredns.yml ```yaml apiVersion: v1 kind: ConfigMap...

Grammar rules use namespaces, so this is possible using the code implementation of Grammar simply by referencing the grammar rule in the new grammar you are creating. You can do...