FsmContext.cs 177 B

123456789101112131415
  1. using System;
  2. namespace LitJson
  3. {
  4. internal class FsmContext
  5. {
  6. public bool Return;
  7. public int NextState;
  8. public Lexer L;
  9. public int StateStack;
  10. }
  11. }