ChangeLog 29 KB

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