##// END OF EJS Templates
Working on text scanner
Working on text scanner

File last commit:

r168:8fb9c9507a26 ref20160224
r172:92d5278d1b10 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);
}
}