ChangeLog 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235
  1. 2004-11-30 Martin Baulig <[email protected]>
  2. * MonoGenericInst.cs: Renamed to MonoGenericClass.cs and also
  3. renamed the class from `MonoGenericInst' to `MonoGenericClass'.
  4. 2004-11-05 Zoltan Varga <[email protected]>
  5. * AssemblyName.cs (FullName): Omit default values from full name.
  6. * Assembly.cs: Implement GetFiles (bool).
  7. * Binder.cs: Add support for byref types. Fixes #69140.
  8. 2004-10-12 Martin Baulig <[email protected]>
  9. * MonoGenericInst.cs (MonoGenericInst): Call initialize() just
  10. before calling the *_internal() methods.
  11. 2004-10-12 Zoltan Varga <[email protected]>
  12. * MethodBody.cs: Implement this.
  13. 2004-10-08 Zoltan Varga <[email protected]>
  14. * Module.cs: Handle the case when the global type does not exists.
  15. 2004-10-03 Zoltan Varga <[email protected]>
  16. * LocalVariableInfo.cs: Reorganize fields so LocalBuilder can inherit
  17. from this class.
  18. 2004-09-28 Zoltan Varga <[email protected]>
  19. * PropertyInfo.cs (OptionalCustomModifiers): Add [MonoTODO].
  20. * PropertyInfo.cs: Add stub for GetConstantValue ().
  21. * ParameterInfo.cs (marshalAs): Make this private.
  22. * Module.cs (ModuleHandle): Add [CLSCompliant(false)].
  23. * LocalVariableInfo.cs MethodBody.cs: Disable default constructor.
  24. * ExceptionHandlingClause.cs: Disable default constructor.
  25. 2004-09-27 Zoltan Varga <[email protected]>
  26. * CustomAttributeData.cs CustomAttributeTypedArgument.cs
  27. CustomAttributeNamedArgument.cs: New files.
  28. * MethodBody.cs LocalVariableInfo.cs ExceptionHandlingClause.cs
  29. ExceptionHandlingClauseFlags.cs: New files.
  30. 2004-09-26 Zoltan Varga <[email protected]>
  31. * FieldInfo.cs: Add support for returning MarshalAsAttribute.
  32. * ParameterInfo.cs: Add marshalAs field, add support for returning
  33. MarshalAsAttribute.
  34. 2004-09-25 Zoltan Varga <[email protected]>
  35. * Module.cs: Add new 2.0 GetMethods and GetFields methods.
  36. * ParameterInfo.cs: Add GetPseudoCustomAttributes () method.
  37. 2004-09-24 Zoltan Varga <[email protected]>
  38. * MonoField.cs: Add GetFieldOffset.
  39. * ObfuscationAttribute.cs: Add ApplyToMembers.
  40. * Assembly.cs: Add stub for ReflectionOnlyLoadFrom.
  41. * Assembly.cs (LoadWithPartialName): Add [ComVisible] attribute.
  42. * MonoMethod.cs FieldInfo.cs: Add GetPseudoCustomAttributes () method.
  43. * AssemblyNameFlags.cs: Add LongevityUnspecified.
  44. 2004-09-23 Zoltan Varga <[email protected]>
  45. * Module.cs: Remove [MonoTODO] from ResolveMember.
  46. * MemberInfo.cs: Add 'Module' property.
  47. * AssemblyFlagsAttribute.cs: Add 2.0 stuff.
  48. * Assembly.cs: Add stubs for ReflectionOnlyLoad methods. Add [Obsolete]
  49. to LoadWithPartialName on 2.0.
  50. * AssemblyNameFlags.cs: Add new 2.0 members.
  51. * FieldInfo.cs MonoField.cs PropertyInfo.cs ParameterInfo.cs MonoProperty.cs: Add stubs for Optinal/RequiredCustomModifiers.
  52. * ObfuscationAttribute.cs ObfuscateAssemblyAttribute.cs: New files.
  53. * EventInfo.cs: Fix 2.0 build.
  54. * MonoEvent.cs (MonoEventInfo): Add 'other_methods' field.
  55. * EventInfo.cs MonoEvent.cs: Add NET 2.0 GetOtherMethods method.
  56. 2004-09-22 Zoltan Varga <[email protected]>
  57. * Module.cs: Implement net 2.0 ResolveXXX methods.
  58. * Module.cs (resolve_token_exception): Fix type of exception thrown.
  59. 2004-09-21 Martin Baulig <[email protected]>
  60. * Assembly.cs (MonoDebugger_CheckRuntimeVersion): New internal method.
  61. 2004-09-20 Zoltan Varga <[email protected]>
  62. * Assembly.cs: Implement 2.0 reflection properties.
  63. * Module.cs: Implement 2.0 reflection properties. Add 'token' field.
  64. 2004-09-19 Zoltan Varga <[email protected]>
  65. * PortableExecutableKind.cs ImageFileMachine.cs: Make this internal
  66. under 1.0.
  67. * MemberInfo.cs ParameterInfo.cs: Add MetadataToken property.
  68. * Module.cs: Add ModuleHandle property and new icalls.
  69. 2004-09-18 Zoltan Varga <[email protected]>
  70. * Module.cs: Add net 2.0 Mvid property.
  71. 2004-08-30 Sebastien Pouliot <[email protected]>
  72. * Assembly.cs: Added internal Demand(PermissionSet) for CAS.
  73. 2004-08-30 Zoltan Varga <[email protected]>
  74. * MethodBase.cs (GetMethodFromHandle): Avoid passing a valuetype to
  75. icalls.
  76. 2004-08-29 Zoltan Varga <[email protected]>
  77. * MethodBase.cs (GetMethodFromHandle): Implement.
  78. 2004-08-13 Marek Safar <[email protected]>
  79. * Assembly.cs: Made _minimum, _optional, _refuse fields internal.
  80. To be reusable by AssemblyBuilder.
  81. 2004-08-09 Sebastien Pouliot <[email protected]>
  82. * Assembly.cs: Fixed some exceptions in NET_1_1 and added some 2.0
  83. properties (required for compiling the new unit tests).
  84. * PortableExecutableKind.cs: New. Flags for NET_2_0.
  85. * ImageFileMachine.cs: New. (Rather limited) enum for NET_2_0.
  86. 2004-08-08 Sebastien Pouliot <[email protected]>
  87. * Assembly.cs: Get default evidences when no evidences have been
  88. supplied. Added internal methods for CAS.
  89. * AssemblyName.cs: New constructor for NET_2_0.
  90. 2004-08-05 Sebastien Pouliot <[email protected]>
  91. * Assembly.cs: Added new fields for CAS to match the runtime (v23).
  92. 2004-07-29 Martin Baulig <[email protected]>
  93. * Module.cs (Mono_GetGuid): Make this static.
  94. Sat Jul 10 15:48:34 CEST 2004 Paolo Molaro <[email protected]>
  95. * Module.cs: return just name in ToString (bug #61287).
  96. 2004-07-03 Zoltan Varga <[email protected]>
  97. * Module.cs: Initialize FilterTypeName[IgnoreCase]. Fixes #61048.
  98. 2004-06-17 Gert Driesen <[email protected]>
  99. * Pointer.cs: remove serializable attribute to match MS.NET
  100. 2004-06-17 Gert Driesen <[email protected]>
  101. * ParameterModifier.cs: marked serializable, renamed field to match
  102. MS.NET, throw ArgumentException when parameter count is less than or
  103. equal to zero
  104. 2004-06-15 Gert Driesen <[email protected]>
  105. * AssemblyName.cs: added TODO for serialization
  106. * Pointer.cs: fixed Box method to return object instead of
  107. Pointer
  108. 2004-06-15 Sebastien Pouliot <[email protected]>
  109. * MemberInfo.cs: Changed constructor from internal to protected.
  110. 2004-06-11 Martin Baulig <[email protected]>
  111. * FieldInfo.cs (Mono_GetGenericFieldDefinition): New method for NET_2_0.
  112. 2004-06-11 Lluis Sanchez <[email protected]>
  113. * StrongNameKeyPair.cs: Catch exception when getting PublicKey to match
  114. MS implementation. Generate the RSA in the constructors.
  115. 2004-06-10 Lluis Sanchez <[email protected]>
  116. * AssemblyName.cs: Added missing fields to serialization methods.
  117. * StrongNameKeyPair.cs: Made it compatible with MS serialization.
  118. 2004-06-08 Jacson Harper <[email protected]>
  119. * AssemblyName.cs (GetAssemblyName): Send a fullpath to the
  120. runtime. This way the codebase is set properly. The codebase is
  121. using g_filename_to_uri which expects a full path.
  122. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  123. * Binder.cs: don't crash when we have a 'null' argument Type array.
  124. Allow it for non-value types. Fixed for both, methods and properties.
  125. Closes bug #58846.
  126. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  127. * Binder.cs: default score must be lower than fail_score or we'll get
  128. an ambiguous match when no indexers given and one single match is found.
  129. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  130. * Binder.cs: removed ^Ms. In case of several properties matching, try
  131. to disambiguate based on the indexer types provider and the conversions
  132. from those into the ones of the property.
  133. 2004-05-31 Gert Driesen <[email protected]>
  134. * Assembly.cs: added missing ComVisible attribute on
  135. ImageRuntimeVersion property
  136. * ConstructorInfo.cs: added missing attributes on Invoke
  137. * EventInfo.cs: added missing attributes
  138. * FieldInfo.cs: added missing attributes
  139. * MethodBase.cs: added missing attributes
  140. * PropertyInfo.cs: added missing attributes
  141. 2004-05-22 Cesar Lopez Nataren <[email protected]>
  142. * FieldInfo.cs: changed default constructor from internal to protected, so classes
  143. that inherit from it can get build.
  144. 2004-05-18 Gert Driesen ([email protected])
  145. * MonoProperty.cs: return correct MethodInfo for
  146. property with only a get or set method. Fixes
  147. bug #58661.
  148. 2004-05-18 Sebastien Pouliot <[email protected]>
  149. * Assembly.cs: Return an empty Evidence collection to avoid
  150. NullReferenceException from calling code (as this is never
  151. null with MS implementation). See bugzilla #53548.
  152. 2004-05-14 Zoltan Varga <[email protected]>
  153. * Assembly.cs: Add stub for LoadFrom.
  154. * Assembly.cs: Fix build.
  155. 2004-05-13 Zoltan Varga <[email protected]>
  156. * Assembly.cs: Add ModuleResolve event.
  157. * Module.cs (Mono_GetGuid): Make this internal.
  158. * FieldInfo.cs: Add stubs for {Get,Set}ValueDirect.
  159. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  160. * Binder.cs: check for ambiguous matches in SelectMethod and
  161. SelectProperty. Fixes bug #58381.
  162. 2004-05-06 Jackson Harper <[email protected]>
  163. * Assembly.cs: remove TODO, this is done.
  164. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  165. * Assembly.cs: ToString () returns the same as GetName ().ToString ().
  166. Fixes bug #58104.
  167. 2004-05-03 Jackson Harper <[email protected]>
  168. * Assembly.cs: Implement LoadWithPartialName. The bulk of this
  169. method is done in the runtime.
  170. 2004-04-29 Lluis Sanchez Gual <[email protected]>
  171. * MonoProperty.cs: Property.GetGetMethod() does not return the method if it
  172. is private (it did until now because of a bug). Make sure it works as it
  173. worked before the fix.
  174. 2004-04-27 Lluis Sanchez Gual <[email protected]>
  175. * ICustomAttributeProvider.cs, IReflect.cs, MemberInfo.cs, AssemblyName.cs:
  176. Removed completed TODOs.
  177. * MonoProperty.cs: In GetAccessors(), GetGetMethod() and GetSetMethod(),
  178. do not return private methods if nonPublic == false.
  179. * ReflectionTypeLoadException.cs: Implemented serialization support.
  180. 2004-04-26 Jackson Harper <[email protected]>
  181. * Assembly.cs: Add icall to determine if an assembly has been
  182. loaded from the GAC.
  183. 2004-04-23 Atsushi Enomoto <[email protected]>
  184. * MethodBase.cs, MonoMethod.cs, TypeDelegator.cs :
  185. The fix should be easier ;)
  186. 2004-04-23 Atsushi Enomoto <[email protected]>
  187. * MethodBase.cs, MonoMethod.cs, TypeDelegator.cs :
  188. NET_2_0 related build fix.
  189. 2004-04-19 Lluis Sanchez Gual <[email protected]>
  190. * Assembly.cs: Removed TODO for CreateQualifiedName.
  191. * AssemblyName.cs: Fixed serialization code.
  192. * AssemblyNameProxy.cs: Implemented.
  193. * Module.cs: Implemented GetMethod() methods, FindTypes() and GetObjectData.
  194. 2004-04-07 Martin Baulig <[email protected]>
  195. * MonoGenericInst.cs (MonoGenericParam): Removed.
  196. 2004-04-07 Martin Baulig <[email protected]>
  197. * MethodBase.cs
  198. (MethodBase.GetGenericParameters): Renamed to GetGenericArguments().
  199. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Removed.
  200. (MonoGenericInst.GetNestedTypes): Just call
  201. `generic_type.GetNestedTypes (bf)' here.
  202. * MonoMethod.cs (MonoMethod.ToString): If we're a generic method,
  203. include the type arguments.
  204. 2004-04-06 Sebastien Pouliot <[email protected]>
  205. * StrongNameKeyPair.cs: Added support for ECMA "key". Now returns a
  206. correct StrongName instance when the ECMA "key" is used.
  207. 2004-04-02 Martin Baulig <[email protected]>
  208. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Override.
  209. 2004-04-01 Martin Baulig <[email protected]>
  210. * MonoGenericInst.cs (MonoGenericParam.IsValueTypeImpl): Override
  211. this and always return false.
  212. 2004-04-01 Martin Baulig <[email protected]>
  213. * MonoGenericInst.cs (MonoGenericParam.IsSubclassOf): Override this.
  214. 2004-03-30 Martin Baulig <[email protected]>
  215. * MonoGenericInst.cs
  216. (MonoGenericParam): Added `bool has_ctor_constraint' field.
  217. (MonoGenericParam.SetConstraints): Added `bool
  218. has_ctor_constraint' argument.
  219. 2004-03-29 Martin Baulig <[email protected]>
  220. * MethodBase.cs (MethodBase.Mono_IsInflatedMethod): New public
  221. virtual property.
  222. (MethodBase.HasGenericParameters): Use the "official" behavior
  223. here, ie. return false if we're not a generic method.
  224. 2004-03-29 Martin Baulig <[email protected]>
  225. * MethodBase.cs: Moved the generics stuff here, made it virtual
  226. where neccessary and use the correct API.
  227. 2004-03-24 Sebastien Pouliot <[email protected]>
  228. * StrongNameKeyPair.cs: Added an internal method to return a
  229. StrongName object (for AssemblyBuilder). Simplified implementation
  230. using Mono.Security.Cryptography.CryptoConvert class.
  231. 2004-03-24 Zoltan Varga <[email protected]>
  232. * AssemblyFileVersionAttribute.cs (.ctor): Add argument checking.
  233. 2004-03-23 Martin Baulig <[email protected]>
  234. * MonoGenericInst.cs: Added support for events.
  235. 2004-03-23 Martin Baulig <[email protected]>
  236. * MonoMethod.cs (MonoMethod.ToString): Don't include the namespace
  237. if it's the empty string.
  238. 2004-03-10 Martin Baulig <[email protected]>
  239. * MethodBase.cs (MethodBase): Implemented
  240. GetGenericMethodDefinition() and HasGenericParameters.
  241. 2004-03-09 Martin Baulig <[email protected]>
  242. * MonoEvent.cs (MonoEventInfo): Replaced `parent' with
  243. `declaring_type' and `reflected_type'.
  244. (MonoEvent): Distinguish between declaring and reflected type.
  245. 2004-02-25 Martin Baulig <[email protected]>
  246. * MonoGenericInst.cs
  247. (MonoGenericInst.GetNestedTypes): Override this.
  248. 2004-02-24 Gonzalo Paniagua Javier <[email protected]>
  249. * Binder.cs:
  250. (SelectProperty): check the return Type if provided.
  251. 2004-02-17 Martin Baulig <[email protected]>
  252. * MonoGenericInst.cs (MonoGenericInst.GetProperties): Added
  253. support for properties.
  254. 2004-02-17 Martin Baulig <[email protected]>
  255. * MonoGenericInst.cs (MonoGenericInst.GetMethods): Walk up the
  256. class hierarchy and return members from the parent classes.
  257. (GetConstructors, GetFields): Likewise.
  258. 2004-02-17 Martin Baulig <[email protected]>
  259. * MonoGenericInst.cs (MonoGenericInst.initialize): Don't inflate
  260. all the members here; we only do this for members of the current
  261. class and only when they're actually queried for.
  262. 2004-02-12 Martin Baulig <[email protected]>
  263. * MonoGenericInst.cs (MonoInflatedField): Removed.
  264. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): Removed.
  265. 2004-02-08 Martin Baulig <[email protected]>
  266. * MonoGenericInst.cs (MonoGenericInst.inflate): Pass recursive
  267. invocations the `reflected' type as `reflected', not `this'.
  268. (MonoInflatedMethod, MonoInflatedCtor): Reflect latest runtime changes.
  269. 2004-02-08 Martin Baulig <[email protected]>
  270. * MonoGenericInst.cs (MonoGenericInst.GetParentType): New interncall.
  271. (MonoGenericInst.GetInterfaces_internal): New interncall.
  272. (MonoGenericInst): Reflect latest API changes; use GetParentType()
  273. and GetInterfaces_internal() instead of the fields.
  274. 2004-02-06 Martin Baulig <[email protected]>
  275. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Override this.
  276. 2004-02-03 Martin Baulig <[email protected]>
  277. * MonoGenericInst.cs (MonoGenericInst.GetInterfaces): Override this.
  278. 2004-01-25 Martin Baulig <[email protected]>
  279. * MonoGenericInst.cs: Honor BindingFlags.DeclaredOnly.
  280. 2004-01-19 Zoltan Varga <[email protected]>
  281. * Assembly.cs (GetManifestResourceStream): Make the IntPtrStream keep
  282. a reference on the Module object which contains the resource.
  283. * Module.cs: Decrease the image reference count when the Module is
  284. garbage collected.
  285. 2004-01-16 Martin Baulig <[email protected]>
  286. * Assembly.cs: Make the `MonoDebugger_' methods static.
  287. 2004-01-16 Gonzalo Paniagua Javier <[email protected]>
  288. * MonoProperty.cs: changed get_property_info so that it only gets the
  289. values needed. Reduces the allocations needed.
  290. 2004-01-15 Martin Baulig <[email protected]>
  291. * Assembly.cs: Make the `MonoDebugger_' methods internal.
  292. 2004-01-04 Nick Drochak <[email protected]>
  293. * Assembly.cs: Removed unused variable in catch block.Eliminates a build
  294. warning.
  295. 2003-12-29 Ben Maurer <[email protected]>
  296. * MethodBase.cs: Internal method to get param count (this
  297. way we can get the info for the ilgen without creating
  298. an array, if we override the method).
  299. 2003-12-18 Zoltan Varga <[email protected]>
  300. * Assembly.cs: Implement LoadFrom.
  301. 2003-12-17 Zoltan Varga <[email protected]>
  302. * Assembly.cs: Add stubs for LoadFile.
  303. 2003-12-16 Zoltan Varga <[email protected]>
  304. * Assembly.cs (GetManifestResourceStream): Only load non-embedded
  305. resources from files.
  306. 2003-12-15 Zoltan Varga <[email protected]>
  307. * MonoField.cs (SetValue): Throw an exception if the value cannot be
  308. converted to the field's type. Fixes #52177.
  309. 2003-12-11 Lluis Sanchez Gual <[email protected]>
  310. * AmbiguousMatchException.cs: Added serialization constructor.
  311. 2003-12-08 Martin Baulig <[email protected]>
  312. * MonoGenericInst.cs (MonoGenericParam): New internal class;
  313. derives from MonoType.
  314. 2003-12-08 Patrik Torstensson <[email protected]>
  315. * Binder.cs: Added internal helpers to get derived level and select the
  316. most derived methodbase (used in GetMethodImpl)
  317. 2003-11-25 Zoltan Varga <[email protected]>
  318. * Assembly.cs (LoadWithPartialName): Return null instead of throwing
  319. an exception to match MS behavior.
  320. 2003-11-24 Zoltan Varga <[email protected]>
  321. * MonoMethod.cs: Add missing constructor.
  322. 2003-11-21 Zoltan Varga <[email protected]>
  323. * MethodBase.cs (Invoke): Make this virtual under NET 1.2.
  324. 2003-11-16 Martin Baulig <[email protected]>
  325. * MonoGenericInst.cs (MonoGenericInst.inflate): Call
  326. `parent.inflate (parent,...)' instead of
  327. `parent.inflate (reflected,...)'.
  328. 2003-11-16 Zoltan Varga <[email protected]>
  329. * Assembly.cs (InternalGetAssemblyName): New icall.
  330. * AssemblyName.cs (GetAssemblyName): Implement this without loading
  331. the assembly in question. Fixes #51035.
  332. 2003-11-14 Martin Baulig <[email protected]>
  333. * MonoGenericInst.cs (MonoGenericInst): Added
  334. `MonoGenericInst[] interfaces' field. This is only used for
  335. interface types.
  336. (MonoGenericInst.inflate): If we're an interface type, add the
  337. methods from all interfaces we inherit.
  338. 2003-11-14 Zoltan Varga <[email protected]>
  339. * AssemblyNameFlags.cs MethodAttributes.cs: Add new enumerated values
  340. from NET 1.1.
  341. * *.cs: Add missing attributes.
  342. 2003-11-11 Todd Berman <[email protected]>
  343. * AssemblyName.cs (FullName): Fixed to include a proper PublicKeyToken.
  344. 2003-11-11 Zoltan Varga <[email protected]>
  345. * MonoMethod.cs: Implement CallingConvention member.
  346. 2003-11-10 Zoltan Varga <[email protected]>
  347. * Assembly.cs (InternalGetType): Add a 'module' argument so this
  348. method can be used from Module as well.
  349. * Module.cs (GetType): Implement.
  350. * Module.cs (GetTypes): Implement.
  351. * Module.cs: Remove some [MonoTODO] attributes from implemented methods.
  352. 2003-11-08 Martin Baulig <[email protected]>
  353. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): Added
  354. a private `IntPtr ginst' field.
  355. (MonoGenericInst.IsValueTypeImpl, inflate): Allow interfaces.
  356. 2003-11-02 Martin Baulig <[email protected]>
  357. * MonoGenericInst.cs (MonoGenericInst.initialize): Include members
  358. from our parent classes in the `methods', `ctors' and `fields'
  359. arrays. When inflating them, reflection now sets their
  360. `declaring_type' and `reflected_type' fields.
  361. (MonoInflatedMethod, MonoInflatedCtor): Added
  362. `MonoGenericInst declaring_type' and `MonoGenericInst reflected_type'
  363. fields and override the `DeclaringType' and `ReflectedType' properties.
  364. 2003-11-02 Martin Baulig <[email protected]>
  365. * MonoGenericInst.cs (MonoGenericInst.IsValueTypeImpl): Override this.
  366. 2003-10-31 Martin Baulig <[email protected]>
  367. * MonoGenericInst.cs (MonoInflatedField): New internal class.
  368. (MonoGenericInst.GetFields): Override this method and inflate
  369. the fields.
  370. * MonoField.cs: Don't make this class sealed.
  371. 2003-10-30 Martin Baulig <[email protected]>
  372. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): New
  373. internal classes.
  374. 2003-10-25 Martin Baulig <[email protected]>
  375. * MonoGenericInst.cs: New internal class.
  376. 2003-10-18 Martin Baulig <[email protected]>
  377. * MethodInfo.cs (MethodInfo.GetGenericArguments): Make this method
  378. abstract; use an interncall in MonoMethod and a custom
  379. implementation in MethodBuilder.
  380. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  381. * MonoEvent.cs: implement ToString method as in MS.NET.
  382. * MonoMethod.cs: fix some differences between mono and MS.NET
  383. implementation of ToString.
  384. 2003-10-17 Zoltan Varga <[email protected]>
  385. * AssemblyName.cs: Fix Version property when some version fields are
  386. undefined.
  387. 2003-10-17 Martin Baulig <[email protected]>
  388. * MethodInfo.cs (MethodInfo.GetGenericArguments): New method.
  389. (MethodInfo.BindGenericParameters): New method.
  390. 2003-10-16 Martin Baulig <[email protected]>
  391. * MethodInfo.cs (MethodInfo.IsGenericMethodDefinition): New
  392. property.
  393. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  394. * ParameterInfo.cs: Modified constructor of ParameterInfo for
  395. the return type of a method. Since parameter positions are
  396. zero-based, the position of the return type must be is -1.
  397. 2003-08-06 Andreas Nahr <[email protected]>
  398. * TargetInvocationException.cs: Fixed signature
  399. 2003-07-24 Miguel de Icaza <[email protected]>
  400. * TypeDelegator.cs: Added generics stubs.
  401. 2003-07-21 Lluis Sanchez Gual <[email protected]>
  402. * ParameterInfo.cs: Position is zero-based in ParameterInfo.
  403. Set the right position value when getting from ParameterBuilder.
  404. Thu Jul 17 17:26:59 CEST 2003 Paolo Molaro <[email protected]>
  405. * FieldInfo.cs, MonoField.cs: cleanups. Cache some info and use
  406. finer-grained icalls. Requires a matching runtime.
  407. 2003-07-11 Zoltan Varga <[email protected]>
  408. * AssemblyFlagsAttribute.cs: Added new constructor from NET 1.1.
  409. * AssemblyFlagsAttribute.cs: Added new property from NET 1.1.
  410. 2003-07-10 Zoltan Varga <[email protected]>
  411. * Assembly.cs: Implemented ImageRuntimeVersion property from NET 1.1.
  412. Mon Jun 30 19:12:08 CEST 2003 Paolo Molaro <[email protected]>
  413. * Pointer.cs: implemented.
  414. 2003-06-15 Zoltan Varga <[email protected]>
  415. * EventInfo.cs: Implement IsSpecialName.
  416. 2003-06-10 Zoltan Varga <[email protected]>
  417. * Module.cs (Mono_GetGuid): New method to return the GUID of the
  418. module.
  419. 2003-05-21 Zoltan Varga <[email protected]>
  420. * Module.cs: Implement GetField and its friends.
  421. 2003-05-20 Zoltan Varga <[email protected]>
  422. * Assembly.cs (GetManifestResourceStream): Moved handling of
  423. linked resources into managed code using the newly implemented
  424. GetManifestResourceInfo () method.
  425. 2003-05-19 Zoltan Varga <[email protected]>
  426. * Module.cs: Implemented IsResource.
  427. * Assembly.cs: Implemented GetManifestResourceInfo, GetModules,
  428. GetModule, GetLoadedModules methods.
  429. * Assembly.cs (GetManifestResourceStream): Added support for
  430. resources in extern assemblies.
  431. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  432. * Assembly.cs: fixed bug #42833.
  433. 2003-05-11 Miguel de Icaza <[email protected]>
  434. * Binder.cs (ChangeType): Very simplistic change. Am not sure if
  435. it is correct, but it makes RemotingCorba move along a bit more
  436. (Remoting.Corba invokes Binder.ConvertArgs, which calls
  437. Binder.ChangeType with an Attribute [] to Object []).
  438. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  439. * Binder.cs:
  440. (check_type): fixed bug #41655.
  441. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  442. * Assembly.cs: implemented GetSatelliteAssembly.
  443. Fri Apr 11 13:06:10 CEST 2003 Paolo Molaro <[email protected]>
  444. * Assembly.cs: added GetNamespaces() icall.
  445. 2003-03-17 Zoltan Varga <[email protected]>
  446. * FieldInfo.cs (GetFieldFromHandle): Implemented.
  447. 2003-03-01 Gonzalo Paniagua Javier <[email protected]>
  448. * Assembly.cs: added missing stuff. Only ModuleResolve event is left
  449. out to avoid changing MonoReflectionAssembly by now.
  450. * ModuleResolveEventHandler.cs: delegate.
  451. 2003-02-19 Gonzalo Paniagua Javier <[email protected]>
  452. * TargetInvocationException.cs: added serialization ctor.
  453. 2003-02-18 Martin Baulig <[email protected]>
  454. * Assembly.cs (MonoDebugger_GetMethodToken): New method to get a
  455. method's metadata token.
  456. 2003-02-04 Sebastien Pouliot <[email protected]>
  457. * Module.cs: Corrected indentation for class.
  458. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  459. * Binder.cs:
  460. (check_type): return true when the target type is object and the source
  461. is a value type.
  462. 2003-02-03 Patrik Torstensson
  463. * Binder.cs: minimize locking time in DefaultBinder.
  464. 2003-02-01 Sebastien Pouliot <[email protected]>
  465. * Module.cs: Oups - not implemented. Added MonoTODO to most methods
  466. so it's real status get reflected correctly on the web site.
  467. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  468. * MonoMethod.cs: implemented GetBaseDefinition ().
  469. 2003-01-28 Patrik Torstensson
  470. * MonoMethod.cs: Added support for serialization for MonoMethod and MonoCMethod
  471. * ReflectionSerializationHolder.cs: Support class for serialization
  472. 2003-01-17 Zoltan Varga <[email protected]>
  473. * ParameterInfo.cs: modified constructor so it allows the
  474. ParameterBuilder to be null and add a 'position' argument which will
  475. be used when pb is null.
  476. 2003-01-16 Lluis Sanchez Gual <[email protected]>
  477. * Assembly.cs: added serialization support.
  478. Sat Jan 4 18:26:41 CET 2003 Paolo Molaro <[email protected]>
  479. * MonoMethod.cs: propagate exceptions from the internal invoke
  480. code that need to be propagated.
  481. Sat Jan 4 18:04:07 CET 2003 Paolo Molaro <[email protected]>
  482. * Binder.cs: throw an exception if the number of arguments
  483. when invoking a method is incorrect.
  484. Thu Jan 2 19:04:58 CET 2003 Paolo Molaro <[email protected]>
  485. * Binder.cs: In SelectMethod() look for an exact match first.
  486. 2003-01-01 Rachel Hestilow <[email protected]>
  487. * MonoField.cs (SetValue): Fix logic typo. Check that obj is
  488. non-null only for the non-static case.
  489. 2002-12-30 Sebastien Pouliot <[email protected]>
  490. * AssemblyName.cs: Fixed null cultureinfo in FullName (as reported by
  491. Zoltan).
  492. 2002-12-23 Sebastien Pouliot <[email protected]>
  493. * AssemblyName.cs: GetPublicKey now return an empty array (not null)
  494. when an assembly isn't signed with a StrongName (to match MS
  495. implementation) and null when no assembly is referenced. Also removed
  496. commented code (no bug reported so it was probably not used).
  497. Thu Dec 19 16:43:19 CET 2002 Paolo Molaro <[email protected]>
  498. * MonoMethod.cs, ParameterInfo.cs: return a custom attribute
  499. provider for the return type of a method.
  500. 2002-12-08 Gonzalo Paniagua Javier <[email protected]>
  501. * AssemblyName.cs: little fix in FullName.
  502. 2002-12-07 Sebastien Pouliot <[email protected]>
  503. * AssemblyName.cs: Added missing methods/interfaces. Fixed some
  504. code to match the MS Framework.
  505. * StrongNameKeyPair.cs: Completed the "visible" implementation.
  506. There must be some internal methods to allow signing with the key.
  507. 2002-12-02 Gonzalo Paniagua Javier <[email protected]>
  508. * EventInfo.cs: implemented (Add|Remove)EventHandler.
  509. Mon Nov 18 17:52:56 CET 2002 Paolo Molaro <[email protected]>
  510. * Assembly.cs: implemented GetManifestResourceStream (Type type,
  511. * String name).
  512. 2002-11-03 Gonzalo Paniagua Javier <[email protected]>
  513. * Assembly.cs: changed name of GetType (string, bool, bool) to
  514. InternalGetType.
  515. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  516. * TargetInvocationException.cs: modified default message.
  517. 2002-10-01 Gonzalo Paniagua Javier <[email protected]>
  518. * MonoProperty.cs:
  519. * PropertyInfo.cs: fixed bug #31535.
  520. 2002-09-27 Martin Baulig <[email protected]>
  521. * Assembly.cs (Assembly.GetReferencedAssemblies): Implemented.
  522. 2002-09-24 Martin Baulig <[email protected]>
  523. * Assembly.cs (MonoDebugger_GetType): New method to get a Type
  524. from its metadata token. This should only be used by the debugger.
  525. 2002-09-21 Martin Baulig <[email protected]>
  526. * Assembly.cs (MonoDebugger_GetLocalTypeFromSignature): New method to
  527. get the type of a local variable from its signature. This should only
  528. be used by the debugger.
  529. 2002-09-20 Martin Baulig <[email protected]>
  530. * Assembly.cs (MonoDebugger_GetMethod): New method to get a MethodBase
  531. from its metadata token. This should only be used by the debugger.
  532. Wed Sep 11 12:50:54 CEST 2002 Paolo Molaro <[email protected]>
  533. * Binder.cs: more default binder implementation.
  534. * FieldInfo.cs, MonoField.cs: fixed SetValue () implementation.
  535. * MonoMethod.cs: use the binder in the Invoke () implementation.
  536. Implemented custom attributes methods and ToString for constructors.
  537. Thu Sep 5 20:36:27 CEST 2002 Paolo Molaro <[email protected]>
  538. * Binder.cs: finished the Binder class and implemented the default
  539. binder.
  540. 2002-09-03 Martin Baulig <[email protected]>
  541. * Assembly.cs (Assembly.Location): Implemented.
  542. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  543. * MonoField.cs:
  544. (GetValue): allow obj to be null (used for static fields).
  545. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  546. * MonoField.cs: GetValue renamed to GetValueInternal. Added check for
  547. null.
  548. Wed Aug 21 13:03:25 CEST 2002 Paolo Molaro <[email protected]>
  549. * Assembly.cs: GetEntryAssembly patch by Tomi Pakarinen
  550. <[email protected]>.
  551. 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
  552. * Assembly.cs: FullName now returns a proper string instead of
  553. something like 'file://...'.
  554. * AssemblyName.cs: added missing ToString method.
  555. 2002-08-19 Gonzalo Paniagua Javier <[email protected]>
  556. * FieldInfo.cs: implemented SetValue.
  557. Wed Aug 14 17:37:30 CEST 2002 Paolo Molaro <[email protected]>
  558. * MonoEvent.cs, MonoMethod.cs: implemented ReflectedType.
  559. 2002-08-14 Dick Porter <[email protected]>
  560. * Assembly.cs: Stub out GetSatelliteAssembly
  561. 2002-08-12 Tim Coleman <[email protected]>
  562. * MonoProperty.cs:
  563. Allow multiple parameters for GetValue ()
  564. Thu Aug 8 13:05:44 CEST 2002 Paolo Molaro <[email protected]>
  565. * Assembly.cs: implemented GetFile() and GetFiles().
  566. Mon Aug 5 21:19:41 CEST 2002 Paolo Molaro <[email protected]>
  567. * Assembly.cs: implemented EntryPoint and a few
  568. resource related methods.
  569. Wed Jul 24 13:08:56 CEST 2002 Paolo Molaro <[email protected]>
  570. * MethodBase.cs: implemented GetCurrentMethod.
  571. * Assembly.cs: implemented GetExecutingAssembly and
  572. GetCallingassembly.
  573. Mon Jul 1 18:01:49 CEST 2002 Paolo Molaro <[email protected]>
  574. * MonoProperty.cs: handle properties with only a set method.
  575. 2002-05-24 Martin Baulig <[email protected]>
  576. * ParameterInfo.cs: Added internal constructor.
  577. Thu May 23 17:18:46 CEST 2002 Paolo Molaro <[email protected]>
  578. * Assembly.cs: implemented CreateInstance ().
  579. 2002-05-22 Martin Baulig <[email protected]>
  580. * MethodBase.cs (get_next_table_index): Added `object obj' argument.
  581. Tue May 21 12:07:40 CEST 2002 Paolo Molaro <[email protected]>
  582. * EventInfo.cs: more implementation.
  583. Mon May 20 17:37:39 CEST 2002 Paolo Molaro <[email protected]>
  584. * MonoEvent.cs: fill-in the implementation.
  585. Sat May 4 15:00:39 CEST 2002 Paolo Molaro <[email protected]>
  586. * Assembly.cs, AssemblyName.cs: updates and fixes.
  587. 2002-04-24 Patrik Torstensson <[email protected]>
  588. * MonoProperty.cs (GetValue) : basic implementation to support nunit
  589. * PropertyInfo.cs (GetValue) : call MonoProperty::GetValue instead of returning null
  590. Thu Apr 18 16:40:54 CEST 2002 Paolo Molaro <[email protected]>
  591. * MonoMethod.c: cache the method name.
  592. 2002-04-12 Duncan Mak <[email protected]>
  593. * AssemblyAlgorithmIdAttribute.cs: Fixed typo in AlgorithmId
  594. property.
  595. * AssemblyDelaySignAttribute.cs: Fixed type in DelaySign
  596. attribute.
  597. * AssemblyFileVersionAttribute.cs: Renamed FileVersion property to
  598. Version.
  599. * BindingFlags.cs: Added missing value "PutRefDispProperty".
  600. * FieldAttributes.cs: Removed value "HasSecurity".
  601. * ManifestResourceInfo.cs: Added missing properties FileName,
  602. ReferencedAssembly and ResourceLocation.
  603. * TargetInvocationException.cs: Added the missing constructors.
  604. Fri Apr 12 18:32:34 CEST 2002 Paolo Molaro <[email protected]>
  605. * MonoMethod.cs: make Name property an icall.
  606. 2002-04-08 Nick Drochak <[email protected]>
  607. * DefaultMemberAttribute.cs: Add AttributeUsage attribute for class,
  608. struct and interface.
  609. Fri Apr 5 15:40:24 CEST 2002 Paolo Molaro <[email protected]>
  610. * MonoEvent.cs: remove unused code.
  611. * MonoProperty: implement ToString().
  612. Wed Apr 3 17:59:26 CEST 2002 Paolo Molaro <[email protected]>
  613. * Assembly.cs: implement GetTypes() and GetExportedTypes().
  614. Mon Mar 25 18:54:58 CET 2002 Paolo Molaro <[email protected]>
  615. * MonoEvent.cs: added the needed fields.
  616. 2002-03-20 Martin Baulig <[email protected]>
  617. * ConstructorInfo.cs (Invoke): Implemented, call the abstract Invoke.
  618. * MonoMethod.cs (MonoCMethod.Invoke): Implemented, call InternalInvoke.
  619. 2002-03-14 Dietmar Maurer <[email protected]>
  620. * MonoMethod.cs (Invoke): call InternalInvoke
  621. * MethodBase.cs (Invoke): call virtual invoke function
  622. Thu Mar 7 17:14:20 CET 2002 Paolo Molaro <[email protected]>
  623. * EventInfo.cs: add compiler needed methods.
  624. * MonoMethod.cs: make ToString() return the return type name, too.
  625. 2002-03-07 Nick Drochak <[email protected]>
  626. * BindingFlags.cs: Add missing enum values. Thanks CorCompare.
  627. Tue Mar 5 20:33:14 CET 2002 Paolo Molaro <[email protected]>
  628. * TypeAttributes.cs, MethodImplAttributes.cs: updates to latest spec.
  629. 2002-02-26 Duncan Mak <[email protected]>
  630. * StrongNameKeyPair.cs: Committed for Kevin Winchester ([email protected]>.
  631. 2002-02-24 Nick Drochak <[email protected]>
  632. * AssemblyNameFlags.cs: Use proper member name. Thanks corcompare!
  633. Fri Feb 22 18:54:13 CET 2002 Paolo Molaro <[email protected]>
  634. * MonoField.cs: implement GetValue as an internalcall.
  635. Implemented ToString().
  636. Tue Feb 19 20:36:04 CET 2002 Paolo Molaro <[email protected]>
  637. * Assembly.cs, Module.cs, MonoField.cs, MonoMethod.cs,
  638. MonoProperty.cs, ParameterInfo.cs: Implemented custom attributes
  639. related methods.
  640. Thu Feb 14 18:55:23 CET 2002 Paolo Molaro <[email protected]>
  641. * TypeAttributes.cs: update to latest spec.
  642. Mon Feb 11 19:50:27 CET 2002 Paolo Molaro <[email protected]>
  643. * Assembly.cs: handle throwOnError in GetType() call.
  644. 2002-02-07 Duncan Mak <[email protected]>
  645. * AssemblyName.cs: Implemented ISerializable interface for the
  646. fields that we have.
  647. 2002-02-05 Duncan Mak <[email protected]>
  648. * Missing.cs:
  649. * TargetException.cs: Added in CVS.
  650. 2002-01-31 Duncan Mak <[email protected]>
  651. * ReflectionTypeLoadException.cs: Added missing bits.
  652. 2002-01-23 Duncan Mak <[email protected]>
  653. * AssemblyAlgorithmIdAttribute.cs:
  654. * AssemblyCompanyAttribute.cs:
  655. * AssemblyConfigurationAttribute.cs:
  656. * AssemblyCopyrightAttribute.cs:
  657. * AssemblyCultureAttribute.cs:
  658. * AssemblyDefaultAliasAttribute.cs:
  659. * AssemblyDelaySignAttribute.cs:
  660. * AssemblyDescriptionAttribute.cs:
  661. * AssemblyFileVersionAttribute.cs:
  662. * AssemblyFlagsAttribute.cs:
  663. * AssemblyInformationalVersionAttribute.cs:
  664. * AssemblyKeyFileAttribute.cs:
  665. * AssemblyKeyNameAttribute.cs:
  666. * AssemblyNameProxy.cs:
  667. * AssemblyProductAttribute.cs:
  668. * AssemblyTitleAttribute.cs:
  669. * AssemblyTradeMarkAttribute.cs:
  670. * AssemblyVersionAttribute.cs:
  671. * CustomAttributeFormatException.cs:
  672. * InvalidFilterCriteriaException.cs:
  673. * TargetParameterCountException.cs: Added.
  674. 2002-01-23 Miguel de Icaza <[email protected]>
  675. * Assembly.cs (Assembly.CodeBase): Implement.
  676. (Assembly.FullName): simplistic and broken implementation. Gets
  677. us where we were yesterday.
  678. Code style fix.
  679. Tue Jan 22 22:54:18 CET 2002 Paolo Molaro <[email protected]>
  680. * IReflect.cs: corrected GetMember() return type.
  681. * InterfaceMapping.cs, TypeDelegator.cs: implemented.
  682. Wed Jan 9 19:37:14 CET 2002 Paolo Molaro <[email protected]>
  683. * MonoMethod.cs: ToString () implementation.
  684. 2002-01-04 Ravi Pratap <[email protected]>
  685. * Assembly.cs : Decorate missing bits with the MonoTODO
  686. attribute.
  687. * ConstructorInfo.cs, MonoMethod.cs, MonoProperty.cs, ParameterInfo.cs,
  688. ReflectionTypeLoadException.cs : Ditto.
  689. * FieldInfo.cs : Ditto.
  690. Thu Jan 3 23:25:34 CET 2002 Paolo Molaro <[email protected]>
  691. * Assembly.cs: trow unimplemented exceptions.
  692. Tue Dec 18 18:46:22 CET 2001 Paolo Molaro <[email protected]>
  693. * MonoMethod.cs: implemented GetParameters().
  694. * MonoProperty.cs: PropertyInfo implementation.
  695. * ParameterInfo.cs: implemented.
  696. * PropertyInfo.cs: fixes.
  697. Thu Dec 13 20:18:05 CET 2001 Paolo Molaro <[email protected]>
  698. * FieldInfo.cs: implemented some Is* propeties.
  699. * MethodBase.cs: fixed attribute accessors.
  700. * MonoField.cs: runtime object to represent a field.
  701. * MonoMethod.cs: runtime object to represent a method.
  702. * AssemblyBuilder.cs: GetToken() methods to get tokens for
  703. strings, fields, methods...
  704. * ILGenerator.cs: handle tokens for methods.
  705. Mon Nov 19 13:56:55 CET 2001 Paolo Molaro <[email protected]>
  706. * MethodBase.cs: add internal get_next_table_index() for use in
  707. Reflection.Emit.
  708. Wed Nov 14 16:53:28 CET 2001 Paolo Molaro <[email protected]>
  709. * Assembly.cs: implement some of the Load() methods.
  710. * ConstructorInfo.cs: some missing stubs and fields.
  711. * FieldInfo.cs: IsInitOnly property.
  712. * ParameterInfo.cs: stubs for missing properties.
  713. * ParameterModifier.cs: implemented class.
  714. 2001-11-10 Sean MacIsaac <[email protected]>
  715. * Assembly.cs: Filled in some stub implementations
  716. * ConstructorInfo.cs: Added some stub functions for NUnit
  717. Fri Nov 2 18:29:36 CET 2001 Paolo Molaro <[email protected]>
  718. * AmbiguousMatchException.cs,
  719. * Assembly.cs, Module.cs: updates.
  720. * FieldInfo.cs: better compliance to the spec.
  721. * MethodBase.cs: move call_conv out of the way.
  722. * AssemblyBuilder.cs: don't use internalcalls, more stuff supported.
  723. * FieldBuilder.cs: implemented.
  724. * ILGenerator.cs: implemented some opcode handling.
  725. * Label.cs: add constructor.
  726. * LocalBuilder.cs: implemented.
  727. * MethodBuilder.cs: don't use internalcalls, more implemented stuff.
  728. * ModuleBuilder.cs: don't use internalcalls, more meat here, too.
  729. * ParameterBuilder.cs: implemented.
  730. * PropertyBuilder.cs: implemented.
  731. * TypeBuilder.cs: don't use internalcalls, more stuff working.
  732. Tue Sep 25 16:48:50 CEST 2001 Paolo Molaro <[email protected]>
  733. * ConstructorInfo.cs, MemberFilter.cs, Module.cs: added.
  734. Fri Sep 14 16:12:08 CEST 2001 Paolo Molaro <[email protected]>
  735. * MethodBase.cs, MethodInfo.cs: added.
  736. Thu Sep 13 18:05:16 CEST 2001 Paolo Molaro <[email protected]>
  737. * Assembly.cs: added stub code.
  738. 2001-07-18 Michael Lambert <[email protected]>
  739. * BindingFlags.cs: Add.