Constants.cs 338 B

123456789101112131415161718
  1. using System;
  2. namespace csharp_sccd_compiler
  3. {
  4. public class Constants
  5. {
  6. /// <summary>
  7. /// Reserved keywords.
  8. /// </summary>
  9. public static string[] Reserved = new string[]{};
  10. public static string INSTATE_SEQ = "INSTATE";
  11. public static string SELF_REFERENCE_SEQ = "SELF";
  12. }
  13. }