ChangeLog 38 KB

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