view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 198:b305c678923a

fixed error handling for chained actions
author koff
date Mon, 10 Oct 2016 03:14:00 +0300
parents a0ff6a0e9c44
children
line wrap: on
line source


namespace Implab.Automaton.RegularExpressions {
    public interface ITaggedDFABuilder<TTag> : IDFATableBuilder {
        void SetStateTag(int s, TTag[] tags);
    }
}