picoe / Eto.Parse

Recursive descent LL(k) parser for .NET with Fluent API, BNF, EBNF and Gold Grammars
MIT License
148 stars 30 forks source link

Parser.GetValue() should be callable with either a ParseMatch, index/length, or perhaps a text value directly #3

Closed cwensley closed 10 years ago

cwensley commented 10 years ago

If you want to call GetValue() from the InnerParse, it is not easy as you have to pass a Match to GetValue, which is only returned after the parsing is completed.

cwensley commented 10 years ago

Now fixed (;