ChangeLog 34 KB

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