GeneratorSupport.cs 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.CodeDom.Compiler GeneratorSupport Class implementation
  3. //
  4. // Author:
  5. // Daniel Stodden ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. namespace System.CodeDom.Compiler
  10. {
  11. [Flags]
  12. [Serializable]
  13. public enum GeneratorSupport {
  14. ArraysOfArrays = 1,
  15. EntryPointMethod = 1 << 1,
  16. GotoStatements = 1 << 2,
  17. MultidimensionalArrays = 1 << 3,
  18. StaticConstructors = 1 << 4,
  19. TryCatchStatements = 1 << 5,
  20. ReturnTypeAttributes = 1 << 6,
  21. DeclareValueTypes = 1 << 7,
  22. DeclareEnums = 1 << 8,
  23. DeclareDelegates = 1 << 9,
  24. DeclareInterfaces = 1 << 10,
  25. DeclareEvents = 1 << 11,
  26. AssemblyAttributes = 1 << 12,
  27. ParameterAttributes = 1 << 13,
  28. ReferenceParameters = 1 << 14,
  29. ChainedConstructorArguments = 1 << 15,
  30. NestedTypes = 1 << 16,
  31. MultipleInterfaceMembers = 1 << 17,
  32. PublicStaticMembers = 1 << 18,
  33. ComplexExpressions = 1 << 19,
  34. Win32Resources = 1 << 20
  35. }
  36. }