/Type.cs

https://bitbucket.org/cvillamor/compiler · C# · 30 lines · 28 code · 2 blank · 0 comment · 0 complexity · c53d7264318c3398ffd7cd1c4c55fe42 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Compiler_
  6. {
  7. public enum TYPE
  8. {
  9. Boolean,
  10. Real,
  11. Integer,
  12. String,
  13. Character,
  14. Label,
  15. Array,
  16. SysFunc,
  17. SysProc,
  18. Procedure,
  19. E
  20. }
  21. public enum ElementType
  22. {
  23. Integer,
  24. Charcter,
  25. Boolean,
  26. Enumeration
  27. }
  28. }