Mercurial > pub > ImplabNet
view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 226:9428ea36838e v2
fixed JSON parser error when parsing escaped double quote symbol
author | cin |
---|---|
date | Fri, 25 Aug 2017 02:16:35 +0300 |
parents | a0ff6a0e9c44 |
children |
line wrap: on
line source
namespace Implab.Automaton.RegularExpressions { public interface ITaggedDFABuilder<TTag> : IDFATableBuilder { void SetStateTag(int s, TTag[] tags); } }