##// END OF EJS Templates
rewritten the text scanner
rewritten the text scanner

File last commit:

r168:8fb9c9507a26 ref20160224
r176:0c3c69fe225b ref20160224
Show More
IDFATableBuilder.cs
15 lines | 384 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
namespace Implab.Automaton {
public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> {
/// <summary>
/// Marks the state as final.
/// </summary>
/// <param name="state">State.</param>
void MarkFinalState(int state);
void SetInitialState(int s);
}
}