##// END OF EJS Templates
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation

File last commit:

r55:c0bf853aa04f default
r138:f75cfa58e3d4 v2
Show More
IVisitor.cs
19 lines | 597 B | text/x-csharp | CSharpLexer
cin
Added initial JSON support...
r55 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Parsing {
/// <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);
}
}