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: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit AssemblyBuilder.cs,1.1,1.2 OpCodes.cs,1.3,1.4PropertyBuilder.cs,1.1,1.2
Date: Sat, 01 Mar 2003 14:32:59 -0500

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

Modified Files:
        AssemblyBuilder.cs OpCodes.cs PropertyBuilder.cs 
Log Message:
stub some out and fix a typo


Index: AssemblyBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/AssemblyBuilder.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AssemblyBuilder.cs  4 May 2002 05:16:06 -0000       1.1
--- AssemblyBuilder.cs  1 Mar 2003 19:32:28 -0000       1.2
***************
*** 26,29 ****
--- 26,30 ----
  
  using System;
+ using System.IO;
  using System.Reflection;
  using System.Security;
***************
*** 96,99 ****
--- 97,227 ----
                                        return entryPoint;
                                }
+                       }
+       
+       [TODO]
+       public void AddResourceFile(String name, String fileName)
+                       {
+                               throw new 
NotImplementedException("AddResourceFile");
+                       }
+ 
+       [TODO]
+       public void AddResourceFile(String name, String fileName, 
ResourceAttributes attribute)
+                       {
+                               throw new 
NotImplementedException("AddResourceFile");
+                       }
+ 
+       [TODO]
+       public ModuleBuilder DefineDynamicModule(String name)
+                       {
+                               throw new 
NotImplementedException("DefineDynamicModule");
+                       }
+ 
+       [TODO]
+       public ModuleBuilder DefineDynamicModule(String name, bool 
emitSymbolInfo)
+                       {
+                               throw new 
NotImplementedException("DefineDynamicModule");
+                       }
+ 
+       [TODO]
+       public ModuleBuilder DefineDynamicModule(String name, String fileName)
+                       {
+                               throw new 
NotImplementedException("DefineDynamicModule");
+                       }
+ 
+       [TODO]
+       public ModuleBuilder DefineDynamicModule(String name, String fileName, 
+                                                                               
         bool emitSymbolInfo)
+                       {
+                               throw new 
NotImplementedException("DefineDynamicModule");
+                       }
+ /*
+       [TODO]
+       public IResourceWriter DefineResource(String name, String description, 
+                                                                               
  String fileName)
+                       {
+                               throw new 
NotImplementedException("DefineResource");
+                       }
+ 
+       [TODO]
+       public IResourceWriter DefineResource(String name, String description, 
+                                                                               
  String fileName, 
+                                                                               
  ResourceAttributes attribute)
+                       {
+                               throw new 
NotImplementedException("DefineResource");
+                       }
+ */
+       [TODO]
+       public void DefineUnmanagedResource(byte[] resource)
+                       {
+                               throw new 
NotImplementedException("DefineUnmanagedResource");
+                       }
+ 
+       [TODO]
+       public void DefineUnmanagedResource(String resourceFileName)
+                       {
+                               throw new 
NotImplementedException("DefineUnmanagedResource");
+                       }
+ 
+       [TODO]
+       public void DefineVersionInfoResource()
+                       {
+                               throw new 
NotImplementedException("DefineVersionInfoResource");
+                       }
+ 
+       [TODO]
+       public void DefineVersionInfoResource(String product, String 
productVersion
+                                                                               
 ,String company, String copyright, 
+                                                                               
  String trademark)
+                       {
+                               throw new 
NotImplementedException("DefineVersionInfoResource");
+                       }
+ 
+       [TODO]
+       public void EmbedResourceFile(String name, String fileName)
+                       {
+                               throw new 
NotImplementedException("EmbedResourceFile");
+                       }
+ 
+       [TODO]
+       public void EmbedResourceFile(String name, String fileName, 
+                                                                 
ResourceAttributes attribute)
+                       {
+                               throw new 
NotImplementedException("EmbedResourceFile");
+                       }
+ 
+       [TODO]
+       public ModuleBuilder GetDynamicModule(String name)
+                       {
+                               throw new 
NotImplementedException("GetDynamicModule");
+                       }
+ 
+       [TODO]
+       public override Type[] GetExportedTypes()
+                       {
+                               throw new 
NotImplementedException("GetExportedTypes");
+                       }
+ 
+       [TODO]
+       public override FileStream GetFile(String name)
+                       {
+                               throw new NotImplementedException("GetFile");
+                       }
+ 
+       [TODO]
+       public void Save(String assemblyFileName)
+                       {
+                               throw new NotImplementedException("Save");
+                       }
+ 
+       [TODO]
+       public void SetCustomAttribute(CustomAttributeBuilder customBuilder)
+                       {
+                               throw new 
NotImplementedException("SetCustomAttribute");
+                       }
+ 
+       [TODO]
+       public void SetCustomAttribute(ConstructorInfo con, byte[] 
binaryAttribute)
+                       {
+                               throw new 
NotImplementedException("SetCustomAttribute");
                        }
  

Index: OpCodes.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OpCodes.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** OpCodes.cs  18 Feb 2003 05:49:12 -0000      1.3
--- OpCodes.cs  1 Mar 2003 19:32:28 -0000       1.4
***************
*** 1050,1054 ****
                                        StackBehaviour.Popi_popi, 
StackBehaviour.Pushi);
  
!       public static readonly OpCode Cgt_un =
                 new OpCode("cgt.un", 0xFE03, FlowControl.Next,
                                        OpCodeType.Primitive, 
OperandType.InlineNone,
--- 1050,1054 ----
                                        StackBehaviour.Popi_popi, 
StackBehaviour.Pushi);
  
!       public static readonly OpCode Cgt_Un =
                 new OpCode("cgt.un", 0xFE03, FlowControl.Next,
                                        OpCodeType.Primitive, 
OperandType.InlineNone,

Index: PropertyBuilder.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/PropertyBuilder.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** PropertyBuilder.cs  4 May 2002 05:16:06 -0000       1.1
--- PropertyBuilder.cs  1 Mar 2003 19:32:28 -0000       1.2
***************
*** 31,36 ****
  
  [TODO]
! public sealed class PropertyBuilder
  {
  
        // TODO
--- 31,215 ----
  
  [TODO]
! public sealed class PropertyBuilder : PropertyInfo
  {
+       [TODO]
+       public void AddOtherMethod(MethodBuilder mdBuilder)
+       {
+                throw new NotImplementedException("AddOtherMethod");
+       }
+ 
+       [TODO]
+       public override MethodInfo[] GetAccessors(bool nonPublic)
+       {
+                throw new NotImplementedException("GetAccessors");
+       }
+ 
+       [TODO]
+       public override Object[] GetCustomAttributes(bool inherit)
+       {
+                throw new NotImplementedException("GetCustomAttributes");
+       }
+ 
+       [TODO]
+       public override Object[] GetCustomAttributes(Type attributeType, 
+                                                                               
                 bool inherit)
+       {
+                throw new NotImplementedException("GetCustomAttributes");
+       }
+ 
+       [TODO]
+       public override MethodInfo GetGetMethod(bool nonPublic)
+       {
+                throw new NotImplementedException("GetGetMethod");
+       }
+ 
+       [TODO]
+       public override ParameterInfo[] GetIndexParameters()
+       {
+                throw new NotImplementedException("GetIndexParameters");
+       }
+ 
+       [TODO]
+       public override MethodInfo GetSetMethod(bool nonPublic)
+       {
+                throw new NotImplementedException("GetSetMethod");
+       }
+ 
+       [TODO]
+       public override Object GetValue(Object obj, Object[] index)
+       {
+                throw new NotImplementedException("GetValue");
+       }
+ 
+       [TODO]
+       public override Object GetValue(Object obj, BindingFlags invokeAttr, 
+                                                                       Binder 
binder, Object[] index, 
+                                                                       
CultureInfo culture)
+       {
+                throw new NotImplementedException("GetValue");
+       }
+ 
+       [TODO]
+       public override bool IsDefined(Type attributeType, bool inherit)
+       {
+                throw new NotImplementedException("IsDefined");
+       }
+ 
+       [TODO]
+       public void SetConstant(Object defaultValue)
+       {
+                throw new NotImplementedException("SetConstant");
+       }
+ 
+       [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 SetGetMethod(MethodBuilder mdBuilder)
+       {
+                throw new NotImplementedException("SetGetMethod");
+       }
+ 
+       [TODO]
+       public void SetSetMethod(MethodBuilder mdBuilder)
+       {
+                throw new NotImplementedException("SetSetMethod");
+       }
+ 
+       [TODO]
+       public override void SetValue(Object obj, Object value, Object[] index)
+       {
+                throw new NotImplementedException("SetValue");
+       }
+ 
+       [TODO]
+       public override void SetValue(Object obj, Object value, 
+                                                                 BindingFlags 
invokeAttr, 
+                                                                 Binder 
binder, Object[] index, 
+                                                                 CultureInfo 
culture)
+       {
+                throw new NotImplementedException("SetValue");
+       }
+ 
+       [TODO]
+       public override PropertyAttributes Attributes 
+       {
+               get
+               {
+                       throw new NotImplementedException("Attributes");
+               }
+       }
+ 
+       [TODO]
+       public override bool CanRead 
+       {
+               get
+               {
+                       throw new NotImplementedException("CanRead");
+               }
+       }
+ 
+       [TODO]
+       public override bool CanWrite 
+       {
+               get
+               {
+                       throw new NotImplementedException("CanWrite");
+               }
+       }
+ 
+       [TODO]
+       public override Type DeclaringType 
+       {
+               get
+               {
+                       throw new NotImplementedException("DeclaringType");
+               }
+       }
+ 
+       [TODO]
+       public override String Name 
+       {
+               get
+               {
+                       throw new NotImplementedException("Name");
+               }
+       }
+ 
+       [TODO]
+       public PropertyToken PropertyToken 
+       {
+               get
+               {
+                       throw new NotImplementedException("PropertyToken");
+               }
+       }
+ 
+       [TODO]
+       public override Type PropertyType 
+       {
+               get
+               {
+                       throw new NotImplementedException("PropertyType");
+               }
+       }
+ 
+       [TODO]
+       public override Type ReflectedType 
+       {
+               get
+               {
+                       throw new NotImplementedException("ReflectedType");
+               }
+       }
  
        // TODO





reply via email to

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