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 Event


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit EventBuilder.cs,1.1,1.2 ModuleBuilder.cs,1.1,1.2
Date: Sat, 01 Mar 2003 15:27:00 -0500

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

Modified Files:
        EventBuilder.cs ModuleBuilder.cs 
Log Message:
Stubs for Reflection.Emit


Index: EventBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/EventBuilder.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** EventBuilder.cs     4 May 2002 05:16:06 -0000       1.1
--- EventBuilder.cs     1 Mar 2003 20:26:31 -0000       1.2
***************
*** 33,38 ****
  public sealed class EventBuilder
  {
  
!       // TODO
  
  }; // class EventBuilder
--- 33,79 ----
  public sealed class EventBuilder
  {
+       [TODO]
+       public void AddOtherMethod(MethodBuilder mdBuilder)
+       {
+                throw new NotImplementedException("AddOtherMethod");
+       }
  
!       [TODO]
!       public EventToken GetEventToken()
!       {
!                throw new NotImplementedException("GetEventToken");
!       }
! 
!       [TODO]
!       public void SetAddOnMethod(MethodBuilder mdBuilder)
!       {
!                throw new NotImplementedException("SetAddOnMethod");
!       }
! 
!       [TODO]
!       public void SetCustomAttribute(CustomAttributeBuilder customBuilder)
!       {
!                throw new NotImplementedException("SetCustomAttribute");
!       }
! 
!       [TODO]
!       public void SetCustomAttribute(ConstructorInfo con, byte[] 
binaryAttribute)
!       {
!                throw new NotImplementedException("SetCustomAttribute");
!       }
! 
!       [TODO]
!       public void SetRaiseMethod(MethodBuilder mdBuilder)
!       {
!                throw new NotImplementedException("SetRaiseMethod");
!       }
! 
!       [TODO]
!       public void SetRemoveOnMethod(MethodBuilder mdBuilder)
!       {
!                throw new NotImplementedException("SetRemoveOnMethod");
!       }
! 
! // TODO
  
  }; // class EventBuilder

Index: ModuleBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ModuleBuilder.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ModuleBuilder.cs    4 May 2002 05:16:06 -0000       1.1
--- ModuleBuilder.cs    1 Mar 2003 20:26:31 -0000       1.2
***************
*** 26,35 ****
  
  using System;
- using System.Reflection;
  using System.Security;
  using System.Security.Policy;
  using System.Runtime.InteropServices;
  using System.Runtime.CompilerServices;
- using System.Resources;
  
  public class ModuleBuilder : Module
--- 26,36 ----
  
  using System;
  using System.Security;
+ using System.Resources;
+ using System.Reflection;
  using System.Security.Policy;
+ using System.Diagnostics.SymbolStore;
  using System.Runtime.InteropServices;
  using System.Runtime.CompilerServices;
  
  public class ModuleBuilder : Module
***************
*** 88,92 ****
                        }
  
! #if false // TODO - debug symbol support
  
        // Define a document for source.
--- 89,93 ----
                        }
  
!       // TODO - debug symbol support
  
        // Define a document for source.
***************
*** 100,105 ****
                        }
  
- #endif
- 
        // Define an enumerated type within this module.
        [TODO]
--- 101,104 ----
***************
*** 412,417 ****
                        }
  
- #if false // TODO - debug symbol support
- 
        // Get the symbol writer associated with this module.
        [TODO]
--- 411,414 ----
***************
*** 421,426 ****
                                return null;
                        }
- 
- #endif
  
        // Find a type within this module.  Returns NULL if not present.
--- 418,421 ----





reply via email to

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