(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System / System.CodeDom.Compiler / GeneratorSupport.cs
blob74c15ecb8f3ae6a1eb0ff18793feecb16abf0dbd
1 //
2 // System.CodeDom.Compiler GeneratorSupport Class implementation
3 //
4 // Author:
5 // Daniel Stodden (stodden@in.tum.de)
6 // Marek Safar (marek.safar@seznam.cz)
7 //
8 // (C) 2002 Ximian, Inc.
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 namespace System.CodeDom.Compiler
34 [Flags]
35 [Serializable]
36 public enum GeneratorSupport {
37 ArraysOfArrays = 1,
38 EntryPointMethod = 1 << 1,
39 GotoStatements = 1 << 2,
40 MultidimensionalArrays = 1 << 3,
41 StaticConstructors = 1 << 4,
42 TryCatchStatements = 1 << 5,
43 ReturnTypeAttributes = 1 << 6,
44 DeclareValueTypes = 1 << 7,
45 DeclareEnums = 1 << 8,
46 DeclareDelegates = 1 << 9,
47 DeclareInterfaces = 1 << 10,
48 DeclareEvents = 1 << 11,
49 AssemblyAttributes = 1 << 12,
50 ParameterAttributes = 1 << 13,
51 ReferenceParameters = 1 << 14,
52 ChainedConstructorArguments = 1 << 15,
53 NestedTypes = 1 << 16,
54 MultipleInterfaceMembers = 1 << 17,
55 PublicStaticMembers = 1 << 18,
56 ComplexExpressions = 1 << 19,
57 Win32Resources = 1 << 20,
59 #if NET_2_0
60 Resources = 1 << 21,
61 PartialTypes = 1 << 22,
62 GenericTypeReference = 1 << 23,
63 GenericTypeDeclaration = 1 << 24,
64 DeclareIndexerProperties = 1 << 25,
65 #endif