dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit Assemb


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit AssemblyBuilder.cs,1.7,1.8 AssemblyBuilderAccess.cs,1.2,1.3 ConstructorBuilder.cs,1.6,1.7 CustomAttributeBuilder.cs,1.3,1.4 EnumBuilder.cs,1.5,1.6 EventBuilder.cs,1.5,1.6 EventToken.cs,1.2,1.3 FieldBuilder.cs,1.7,1.8 FieldToken.cs,1.2,1.3 FlowControl.cs,1.1,1.2 IDetachItem.cs,1.1,1.2 ILGenerator.cs,1.11,1.12 Label.cs,1.2,1.3 LocalBuilder.cs,1.5,1.6 MethodBuilder.cs,1.8,1.9 MethodRental.cs,1.1,1.2 MethodToken.cs,1.2,1.3 ModuleBuilder.cs,1.8,1.9 OpCode.cs,1.2,1.3 OpCodeType.cs,1.1,1.2 OpCodes.cs,1.5,1.6 OperandType.cs,1.1,1.2 PEFileKinds.cs,1.1,1.2 PackingSize.cs,1.2,1.3 ParameterBuilder.cs,1.4,1.5 ParameterToken.cs,1.2,1.3 PropertyBuilder.cs,1.7,1.8 PropertyToken.cs,1.2,1.3 SignatureHelper.cs,1.3,1.4 SignatureToken.cs,1.2,1.3 StackBehaviour.cs,1.1,1.2 StringToken.cs,1.2,1.3 TypeBuilder.cs,1.9,1.10 TypeToken.cs,1.2,1.3UnmanagedMarshal.cs,1.3,1.4
Date: Mon, 26 May 2003 01:03:44 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit
In directory subversions:/tmp/cvs-serv27966/runtime/System/Reflection/Emit

Modified Files:
        AssemblyBuilder.cs AssemblyBuilderAccess.cs 
        ConstructorBuilder.cs CustomAttributeBuilder.cs EnumBuilder.cs 
        EventBuilder.cs EventToken.cs FieldBuilder.cs FieldToken.cs 
        FlowControl.cs IDetachItem.cs ILGenerator.cs Label.cs 
        LocalBuilder.cs MethodBuilder.cs MethodRental.cs 
        MethodToken.cs ModuleBuilder.cs OpCode.cs OpCodeType.cs 
        OpCodes.cs OperandType.cs PEFileKinds.cs PackingSize.cs 
        ParameterBuilder.cs ParameterToken.cs PropertyBuilder.cs 
        PropertyToken.cs SignatureHelper.cs SignatureToken.cs 
        StackBehaviour.cs StringToken.cs TypeBuilder.cs TypeToken.cs 
        UnmanagedMarshal.cs 
Log Message:


Add the CONFIG_REFLECTION_EMIT option to the profiles.


Index: AssemblyBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/AssemblyBuilder.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** AssemblyBuilder.cs  25 Apr 2003 05:19:54 -0000      1.7
--- AssemblyBuilder.cs  26 May 2003 05:03:41 -0000      1.8
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 455,459 ****
  }; // class AssemblyBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 455,459 ----
  }; // class AssemblyBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: AssemblyBuilderAccess.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/AssemblyBuilderAccess.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** AssemblyBuilderAccess.cs    25 Apr 2003 04:45:13 -0000      1.2
--- AssemblyBuilderAccess.cs    26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [Flags]
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  [Flags]
***************
*** 35,39 ****
  }; // enum AssemblyBuilderAccess
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 35,39 ----
  }; // enum AssemblyBuilderAccess
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: ConstructorBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ConstructorBuilder.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** ConstructorBuilder.cs       28 Mar 2003 01:04:15 -0000      1.6
--- ConstructorBuilder.cs       26 May 2003 05:03:41 -0000      1.7
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 386,390 ****
  }; // class ConstructorBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 386,390 ----
  }; // class ConstructorBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: CustomAttributeBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/CustomAttributeBuilder.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CustomAttributeBuilder.cs   25 Apr 2003 03:53:07 -0000      1.3
--- CustomAttributeBuilder.cs   26 May 2003 05:03:41 -0000      1.4
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 73,77 ****
  }; // class CustomAttributeBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 73,77 ----
  }; // class CustomAttributeBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: EnumBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/EnumBuilder.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** EnumBuilder.cs      25 Apr 2003 05:19:54 -0000      1.5
--- EnumBuilder.cs      26 May 2003 05:03:41 -0000      1.6
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 420,424 ****
  }; // class EnumBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 420,424 ----
  }; // class EnumBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: EventBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/EventBuilder.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** EventBuilder.cs     22 Mar 2003 05:55:13 -0000      1.5
--- EventBuilder.cs     26 May 2003 05:03:41 -0000      1.6
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 179,183 ****
  }; // class EventBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 179,183 ----
  }; // class EventBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: EventToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/EventToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** EventToken.cs       4 May 2002 05:16:06 -0000       1.2
--- EventToken.cs       26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct EventToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct EventToken
***************
*** 69,73 ****
  }; // struct EventToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct EventToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: FieldBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/FieldBuilder.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** FieldBuilder.cs     28 Mar 2003 01:04:15 -0000      1.7
--- FieldBuilder.cs     26 May 2003 05:03:41 -0000      1.8
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 348,352 ****
  }; // class FieldBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 348,352 ----
  }; // class FieldBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: FieldToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/FieldToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** FieldToken.cs       4 May 2002 05:16:06 -0000       1.2
--- FieldToken.cs       26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct FieldToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct FieldToken
***************
*** 69,73 ****
  }; // struct FieldToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct FieldToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: FlowControl.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/FlowControl.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** FlowControl.cs      1 Dec 2001 02:06:47 -0000       1.1
--- FlowControl.cs      26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public enum FlowControl
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public enum FlowControl
***************
*** 40,44 ****
  }; // enum FlowControl
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 40,44 ----
  }; // enum FlowControl
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: IDetachItem.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/IDetachItem.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IDetachItem.cs      22 Mar 2003 11:06:25 -0000      1.1
--- IDetachItem.cs      26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  internal interface IDetachItem
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  internal interface IDetachItem
***************
*** 31,35 ****
  }; // interface IDetachItem
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 31,35 ----
  }; // interface IDetachItem
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: ILGenerator.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ILGenerator.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** ILGenerator.cs      25 Apr 2003 03:53:07 -0000      1.11
--- ILGenerator.cs      26 May 2003 05:03:41 -0000      1.12
***************
*** 22,26 ****
   */
  
! #if !ECMA_COMPAT
  
  namespace System.Reflection.Emit
--- 22,26 ----
   */
  
! #if CONFIG_REFLECTION_EMIT
  
  namespace System.Reflection.Emit
***************
*** 1265,1267 ****
  }; // namespace System.Reflection.Emit
  
! #endif
--- 1265,1267 ----
  }; // namespace System.Reflection.Emit
  
! #endif // CONFIG_REFLECTION_EMIT

Index: Label.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/Label.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Label.cs    17 Mar 2003 10:13:43 -0000      1.2
--- Label.cs    26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct Label
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct Label
***************
*** 57,61 ****
  }; // struct Label
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 57,61 ----
  }; // struct Label
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: LocalBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/LocalBuilder.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** LocalBuilder.cs     28 Mar 2003 01:04:15 -0000      1.5
--- LocalBuilder.cs     26 May 2003 05:03:41 -0000      1.6
***************
*** 24,28 ****
  using System;
  
! #if !ECMA_COMPAT
  
  namespace System.Reflection.Emit
--- 24,28 ----
  using System;
  
! #if CONFIG_REFLECTION_EMIT
  
  namespace System.Reflection.Emit
***************
*** 68,70 ****
  }; // namespace System.Reflection.Emit
  
! #endif
--- 68,70 ----
  }; // namespace System.Reflection.Emit
  
! #endif // CONFIG_REFLECTION_EMIT

Index: MethodBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/MethodBuilder.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** MethodBuilder.cs    25 Apr 2003 05:19:54 -0000      1.8
--- MethodBuilder.cs    26 May 2003 05:03:41 -0000      1.9
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 605,609 ****
  }; // class MethodBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 605,609 ----
  }; // class MethodBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: MethodRental.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/MethodRental.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** MethodRental.cs     19 Apr 2003 04:03:04 -0000      1.1
--- MethodRental.cs     26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 48,52 ****
  }; // class MethodRental
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 48,52 ----
  }; // class MethodRental
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: MethodToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/MethodToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** MethodToken.cs      4 May 2002 05:16:06 -0000       1.2
--- MethodToken.cs      26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct MethodToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct MethodToken
***************
*** 69,73 ****
  }; // struct MethodToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct MethodToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: ModuleBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ModuleBuilder.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** ModuleBuilder.cs    28 Mar 2003 01:04:15 -0000      1.8
--- ModuleBuilder.cs    26 May 2003 05:03:41 -0000      1.9
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 701,705 ****
  }; // class ModuleBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 701,705 ----
  }; // class ModuleBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: OpCode.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OpCode.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** OpCode.cs   25 Apr 2003 03:53:07 -0000      1.2
--- OpCode.cs   26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct OpCode
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct OpCode
***************
*** 167,171 ****
  }; // struct OpCode
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 167,171 ----
  }; // struct OpCode
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: OpCodeType.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OpCodeType.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** OpCodeType.cs       1 Dec 2001 02:06:47 -0000       1.1
--- OpCodeType.cs       26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public enum OpCodeType
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public enum OpCodeType
***************
*** 37,41 ****
  }; // enum OpCodeType
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 37,41 ----
  }; // enum OpCodeType
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: OpCodes.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OpCodes.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** OpCodes.cs  25 Apr 2003 03:53:07 -0000      1.5
--- OpCodes.cs  26 May 2003 05:03:41 -0000      1.6
***************
*** 22,26 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 22,26 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 1177,1181 ****
  }; // struct OpCodes
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 1177,1181 ----
  }; // struct OpCodes
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: OperandType.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OperandType.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** OperandType.cs      1 Dec 2001 02:06:47 -0000       1.1
--- OperandType.cs      26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public enum OperandType
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public enum OperandType
***************
*** 49,53 ****
  }; // enum OperandType
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 49,53 ----
  }; // enum OperandType
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: PEFileKinds.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/PEFileKinds.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** PEFileKinds.cs      1 Dec 2001 02:06:47 -0000       1.1
--- PEFileKinds.cs      26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public enum PEFileKinds
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public enum PEFileKinds
***************
*** 34,38 ****
  }; // enum PEFileKinds
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 34,38 ----
  }; // enum PEFileKinds
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: PackingSize.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/PackingSize.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** PackingSize.cs      23 Apr 2003 05:39:49 -0000      1.2
--- PackingSize.cs      26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [Flags]
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  [Flags]
***************
*** 38,42 ****
  }; // enum PackingSize
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 38,42 ----
  }; // enum PackingSize
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: ParameterBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ParameterBuilder.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ParameterBuilder.cs 28 Mar 2003 01:04:15 -0000      1.4
--- ParameterBuilder.cs 26 May 2003 05:03:41 -0000      1.5
***************
*** 25,29 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 25,29 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 254,258 ****
  }; // class ParameterBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 254,258 ----
  }; // class ParameterBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: ParameterToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ParameterToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ParameterToken.cs   4 May 2002 05:16:06 -0000       1.2
--- ParameterToken.cs   26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct ParameterToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct ParameterToken
***************
*** 69,73 ****
  }; // struct ParameterToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct ParameterToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: PropertyBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/PropertyBuilder.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** PropertyBuilder.cs  28 Mar 2003 01:04:15 -0000      1.7
--- PropertyBuilder.cs  26 May 2003 05:03:41 -0000      1.8
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 410,414 ****
  }; // class PropertyBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 410,414 ----
  }; // class PropertyBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: PropertyToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/PropertyToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** PropertyToken.cs    4 May 2002 05:16:06 -0000       1.2
--- PropertyToken.cs    26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct PropertyToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct PropertyToken
***************
*** 69,73 ****
  }; // struct PropertyToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct PropertyToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: SignatureHelper.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/SignatureHelper.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SignatureHelper.cs  22 Mar 2003 05:55:13 -0000      1.3
--- SignatureHelper.cs  26 May 2003 05:03:41 -0000      1.4
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 439,443 ****
  }; // class SignatureHelper
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 439,443 ----
  }; // class SignatureHelper
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: SignatureToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/SignatureToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** SignatureToken.cs   4 May 2002 05:16:06 -0000       1.2
--- SignatureToken.cs   26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct SignatureToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct SignatureToken
***************
*** 69,73 ****
  }; // struct SignatureToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct SignatureToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: StackBehaviour.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/StackBehaviour.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** StackBehaviour.cs   1 Dec 2001 02:06:47 -0000       1.1
--- StackBehaviour.cs   26 May 2003 05:03:41 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public enum StackBehaviour
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public enum StackBehaviour
***************
*** 59,63 ****
  }; // enum StackBehaviour
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 59,63 ----
  }; // enum StackBehaviour
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: StringToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/StringToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** StringToken.cs      4 May 2002 05:16:06 -0000       1.2
--- StringToken.cs      26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct StringToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct StringToken
***************
*** 66,70 ****
  }; // struct StringToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 66,70 ----
  }; // struct StringToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: TypeBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/TypeBuilder.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** TypeBuilder.cs      25 Apr 2003 05:19:54 -0000      1.9
--- TypeBuilder.cs      26 May 2003 05:03:41 -0000      1.10
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 1318,1322 ****
  }; // class TypeBuilder
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 1318,1322 ----
  }; // class TypeBuilder
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: TypeToken.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/TypeToken.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TypeToken.cs        4 May 2002 05:16:06 -0000       1.2
--- TypeToken.cs        26 May 2003 05:03:41 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public struct TypeToken
--- 23,27 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  public struct TypeToken
***************
*** 69,73 ****
  }; // struct TypeToken
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 69,73 ----
  }; // struct TypeToken
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit

Index: UnmanagedMarshal.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/UnmanagedMarshal.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** UnmanagedMarshal.cs 20 Mar 2003 06:22:59 -0000      1.3
--- UnmanagedMarshal.cs 26 May 2003 05:03:41 -0000      1.4
***************
*** 26,30 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 26,30 ----
  {
  
! #if CONFIG_REFLECTION_EMIT
  
  using System;
***************
*** 216,220 ****
  }; // class UnmanagedMarshal
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.Reflection.Emit
--- 216,220 ----
  }; // class UnmanagedMarshal
  
! #endif // CONFIG_REFLECTION_EMIT
  
  }; // namespace System.Reflection.Emit





reply via email to

[Prev in Thread] Current Thread [Next in Thread]