IDFATable2.cs
9 lines
| 181 B
| text/x-csharp
|
CSharpLexer
cin
|
r169 | using System; | ||
namespace Implab.Automaton.RegularExpressions { | ||||
public interface IDFATable2<TTag> : IDFATable { | ||||
void MarkFinalState(int state, TTag[] tags); | ||||
} | ||||
} | ||||