State.cs 184 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Larkdown.Parser.Lexer
  5. {
  6. abstract class State
  7. {
  8. public abstract State Next(Lexer lexer);
  9. }
  10. }