Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12 lines (12 sloc)
366 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Muftec.Lib.CompilerStates | |
{ | |
interface ICompilerState | |
{ | |
/// <summary> | |
/// Evaluate a token. | |
/// </summary> | |
/// <param name="token">Token to evaluate.</param> | |
/// <returns>Returns true if evaluation should continue with this machine, or false if not.</returns> | |
bool EvaluateToken(string token); | |
} | |
} |