view Implab/Automaton/RegularExpressions/IVisitor.cs @ 251:7c7e9ad6fe4a v3

Prerelease version of RunnableComponent Added draft messaging interfaces Added more more helpers to Xml/SerializationHelpers
author cin
date Sun, 11 Feb 2018 00:49:51 +0300
parents a0ff6a0e9c44
children
line wrap: on
line source

namespace Implab.Automaton.RegularExpressions {
    /// <summary>
    /// Интерфейс обходчика синтаксического дерева регулярного выражения
    /// </summary>
    public interface IVisitor {
        void Visit(AltToken token);
        void Visit(StarToken token);
        void Visit(CatToken token);
        void Visit(EmptyToken token);
        void Visit(EndToken token);
        void Visit(SymbolToken token);
    }
}