Ellested
Ellested
Just a note, on a couple of things I've come across while working with zio. I'm using a configuration with a mount file system as the root, which is mounting...
I was trying to get the pysical path of a file within a mounted file system, but it's not super happy about it, I assumed the ConvertPathToInternal would return this,...
Unit tests are good, but needs an implementation that shares them with the sync version. I thought you could maybe just have two separate engines, and have RunTest execute the...
Question
``` void Main() { Parsers.MyText.Parse("'text'").Dump(); //Fails Parsers.ManyMyText.Parse("").Dump(); //Fails Parsers.ManyMyText.Parse("'text'").Dump(); //Fails Parsers.ManyMyText.Parse("'text''text'").Dump(); } public static class Parsers { public static Parser MyText = Terms.String(StringLiteralQuotes.SingleOrDouble).Then(s => s.ToString()).ElseError("Text"); public static Parser ManyMyText =...