State.cs 345 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace Jint.Parser
  3. {
  4. public struct State
  5. {
  6. public int LastCommentStart;
  7. public bool AllowIn;
  8. public HashSet<string> LabelSet;
  9. public bool InFunctionBody;
  10. public bool InIteration;
  11. public bool InSwitch;
  12. public Stack<int> MarkerStack;
  13. }
  14. }