ChangeLog 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. 2003-10-17 Martin Baulig <[email protected]>
  2. * MethodInfo.cs (MethodInfo.GetGenericArguments): New method.
  3. (MethodInfo.BindGenericParameters): New method.
  4. 2003-10-16 Martin Baulig <[email protected]>
  5. * MethodInfo.cs (MethodInfo.IsGenericMethodDefinition): New
  6. property.
  7. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  8. * ParameterInfo.cs: Modified constructor of ParameterInfo for
  9. the return type of a method. Since parameter positions are
  10. zero-based, the position of the return type must be is -1.
  11. 2003-08-06 Andreas Nahr <[email protected]>
  12. * TargetInvocationException.cs: Fixed signature
  13. 2003-07-24 Miguel de Icaza <[email protected]>
  14. * TypeDelegator.cs: Added generics stubs.
  15. 2003-07-21 Lluis Sanchez Gual <[email protected]>
  16. * ParameterInfo.cs: Position is zero-based in ParameterInfo.
  17. Set the right position value when getting from ParameterBuilder.
  18. Thu Jul 17 17:26:59 CEST 2003 Paolo Molaro <[email protected]>
  19. * FieldInfo.cs, MonoField.cs: cleanups. Cache some info and use
  20. finer-grained icalls. Requires a matching runtime.
  21. 2003-07-11 Zoltan Varga <[email protected]>
  22. * AssemblyFlagsAttribute.cs: Added new constructor from NET 1.1.
  23. * AssemblyFlagsAttribute.cs: Added new property from NET 1.1.
  24. 2003-07-10 Zoltan Varga <[email protected]>
  25. * Assembly.cs: Implemented ImageRuntimeVersion property from NET 1.1.
  26. Mon Jun 30 19:12:08 CEST 2003 Paolo Molaro <[email protected]>
  27. * Pointer.cs: implemented.
  28. 2003-06-15 Zoltan Varga <[email protected]>
  29. * EventInfo.cs: Implement IsSpecialName.
  30. 2003-06-10 Zoltan Varga <[email protected]>
  31. * Module.cs (Mono_GetGuid): New method to return the GUID of the
  32. module.
  33. 2003-05-21 Zoltan Varga <[email protected]>
  34. * Module.cs: Implement GetField and its friends.
  35. 2003-05-20 Zoltan Varga <[email protected]>
  36. * Assembly.cs (GetManifestResourceStream): Moved handling of
  37. linked resources into managed code using the newly implemented
  38. GetManifestResourceInfo () method.
  39. 2003-05-19 Zoltan Varga <[email protected]>
  40. * Module.cs: Implemented IsResource.
  41. * Assembly.cs: Implemented GetManifestResourceInfo, GetModules,
  42. GetModule, GetLoadedModules methods.
  43. * Assembly.cs (GetManifestResourceStream): Added support for
  44. resources in extern assemblies.
  45. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  46. * Assembly.cs: fixed bug #42833.
  47. 2003-05-11 Miguel de Icaza <[email protected]>
  48. * Binder.cs (ChangeType): Very simplistic change. Am not sure if
  49. it is correct, but it makes RemotingCorba move along a bit more
  50. (Remoting.Corba invokes Binder.ConvertArgs, which calls
  51. Binder.ChangeType with an Attribute [] to Object []).
  52. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  53. * Binder.cs:
  54. (check_type): fixed bug #41655.
  55. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  56. * Assembly.cs: implemented GetSatelliteAssembly.
  57. Fri Apr 11 13:06:10 CEST 2003 Paolo Molaro <[email protected]>
  58. * Assembly.cs: added GetNamespaces() icall.
  59. 2003-03-17 Zoltan Varga <[email protected]>
  60. * FieldInfo.cs (GetFieldFromHandle): Implemented.
  61. 2003-03-01 Gonzalo Paniagua Javier <[email protected]>
  62. * Assembly.cs: added missing stuff. Only ModuleResolve event is left
  63. out to avoid changing MonoReflectionAssembly by now.
  64. * ModuleResolveEventHandler.cs: delegate.
  65. 2003-02-19 Gonzalo Paniagua Javier <[email protected]>
  66. * TargetInvocationException.cs: added serialization ctor.
  67. 2003-02-18 Martin Baulig <[email protected]>
  68. * Assembly.cs (MonoDebugger_GetMethodToken): New method to get a
  69. method's metadata token.
  70. 2003-02-04 Sebastien Pouliot <[email protected]>
  71. * Module.cs: Corrected indentation for class.
  72. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  73. * Binder.cs:
  74. (check_type): return true when the target type is object and the source
  75. is a value type.
  76. 2003-02-03 Patrik Torstensson
  77. * Binder.cs: minimize locking time in DefaultBinder.
  78. 2003-02-01 Sebastien Pouliot <[email protected]>
  79. * Module.cs: Oups - not implemented. Added MonoTODO to most methods
  80. so it's real status get reflected correctly on the web site.
  81. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  82. * MonoMethod.cs: implemented GetBaseDefinition ().
  83. 2003-01-28 Patrik Torstensson
  84. * MonoMethod.cs: Added support for serialization for MonoMethod and MonoCMethod
  85. * ReflectionSerializationHolder.cs: Support class for serialization
  86. 2003-01-17 Zoltan Varga <[email protected]>
  87. * ParameterInfo.cs: modified constructor so it allows the
  88. ParameterBuilder to be null and add a 'position' argument which will
  89. be used when pb is null.
  90. 2003-01-16 Lluis Sanchez Gual <[email protected]>
  91. * Assembly.cs: added serialization support.
  92. Sat Jan 4 18:26:41 CET 2003 Paolo Molaro <[email protected]>
  93. * MonoMethod.cs: propagate exceptions from the internal invoke
  94. code that need to be propagated.
  95. Sat Jan 4 18:04:07 CET 2003 Paolo Molaro <[email protected]>
  96. * Binder.cs: throw an exception if the number of arguments
  97. when invoking a method is incorrect.
  98. Thu Jan 2 19:04:58 CET 2003 Paolo Molaro <[email protected]>
  99. * Binder.cs: In SelectMethod() look for an exact match first.
  100. 2003-01-01 Rachel Hestilow <[email protected]>
  101. * MonoField.cs (SetValue): Fix logic typo. Check that obj is
  102. non-null only for the non-static case.
  103. 2002-12-30 Sebastien Pouliot <[email protected]>
  104. * AssemblyName.cs: Fixed null cultureinfo in FullName (as reported by
  105. Zoltan).
  106. 2002-12-23 Sebastien Pouliot <[email protected]>
  107. * AssemblyName.cs: GetPublicKey now return an empty array (not null)
  108. when an assembly isn't signed with a StrongName (to match MS
  109. implementation) and null when no assembly is referenced. Also removed
  110. commented code (no bug reported so it was probably not used).
  111. Thu Dec 19 16:43:19 CET 2002 Paolo Molaro <[email protected]>
  112. * MonoMethod.cs, ParameterInfo.cs: return a custom attribute
  113. provider for the return type of a method.
  114. 2002-12-08 Gonzalo Paniagua Javier <[email protected]>
  115. * AssemblyName.cs: little fix in FullName.
  116. 2002-12-07 Sebastien Pouliot <[email protected]>
  117. * AssemblyName.cs: Added missing methods/interfaces. Fixed some
  118. code to match the MS Framework.
  119. * StrongNameKeyPair.cs: Completed the "visible" implementation.
  120. There must be some internal methods to allow signing with the key.
  121. 2002-12-02 Gonzalo Paniagua Javier <[email protected]>
  122. * EventInfo.cs: implemented (Add|Remove)EventHandler.
  123. Mon Nov 18 17:52:56 CET 2002 Paolo Molaro <[email protected]>
  124. * Assembly.cs: implemented GetManifestResourceStream (Type type,
  125. * String name).
  126. 2002-11-03 Gonzalo Paniagua Javier <[email protected]>
  127. * Assembly.cs: changed name of GetType (string, bool, bool) to
  128. InternalGetType.
  129. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  130. * TargetInvocationException.cs: modified default message.
  131. 2002-10-01 Gonzalo Paniagua Javier <[email protected]>
  132. * MonoProperty.cs:
  133. * PropertyInfo.cs: fixed bug #31535.
  134. 2002-09-27 Martin Baulig <[email protected]>
  135. * Assembly.cs (Assembly.GetReferencedAssemblies): Implemented.
  136. 2002-09-24 Martin Baulig <[email protected]>
  137. * Assembly.cs (MonoDebugger_GetType): New method to get a Type
  138. from its metadata token. This should only be used by the debugger.
  139. 2002-09-21 Martin Baulig <[email protected]>
  140. * Assembly.cs (MonoDebugger_GetLocalTypeFromSignature): New method to
  141. get the type of a local variable from its signature. This should only
  142. be used by the debugger.
  143. 2002-09-20 Martin Baulig <[email protected]>
  144. * Assembly.cs (MonoDebugger_GetMethod): New method to get a MethodBase
  145. from its metadata token. This should only be used by the debugger.
  146. Wed Sep 11 12:50:54 CEST 2002 Paolo Molaro <[email protected]>
  147. * Binder.cs: more default binder implementation.
  148. * FieldInfo.cs, MonoField.cs: fixed SetValue () implementation.
  149. * MonoMethod.cs: use the binder in the Invoke () implementation.
  150. Implemented custom attributes methods and ToString for constructors.
  151. Thu Sep 5 20:36:27 CEST 2002 Paolo Molaro <[email protected]>
  152. * Binder.cs: finished the Binder class and implemented the default
  153. binder.
  154. 2002-09-03 Martin Baulig <[email protected]>
  155. * Assembly.cs (Assembly.Location): Implemented.
  156. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  157. * MonoField.cs:
  158. (GetValue): allow obj to be null (used for static fields).
  159. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  160. * MonoField.cs: GetValue renamed to GetValueInternal. Added check for
  161. null.
  162. Wed Aug 21 13:03:25 CEST 2002 Paolo Molaro <[email protected]>
  163. * Assembly.cs: GetEntryAssembly patch by Tomi Pakarinen
  164. <[email protected]>.
  165. 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
  166. * Assembly.cs: FullName now returns a proper string instead of
  167. something like 'file://...'.
  168. * AssemblyName.cs: added missing ToString method.
  169. 2002-08-19 Gonzalo Paniagua Javier <[email protected]>
  170. * FieldInfo.cs: implemented SetValue.
  171. Wed Aug 14 17:37:30 CEST 2002 Paolo Molaro <[email protected]>
  172. * MonoEvent.cs, MonoMethod.cs: implemented ReflectedType.
  173. 2002-08-14 Dick Porter <[email protected]>
  174. * Assembly.cs: Stub out GetSatelliteAssembly
  175. 2002-08-12 Tim Coleman <[email protected]>
  176. * MonoProperty.cs:
  177. Allow multiple parameters for GetValue ()
  178. Thu Aug 8 13:05:44 CEST 2002 Paolo Molaro <[email protected]>
  179. * Assembly.cs: implemented GetFile() and GetFiles().
  180. Mon Aug 5 21:19:41 CEST 2002 Paolo Molaro <[email protected]>
  181. * Assembly.cs: implemented EntryPoint and a few
  182. resource related methods.
  183. Wed Jul 24 13:08:56 CEST 2002 Paolo Molaro <[email protected]>
  184. * MethodBase.cs: implemented GetCurrentMethod.
  185. * Assembly.cs: implemented GetExecutingAssembly and
  186. GetCallingassembly.
  187. Mon Jul 1 18:01:49 CEST 2002 Paolo Molaro <[email protected]>
  188. * MonoProperty.cs: handle properties with only a set method.
  189. 2002-05-24 Martin Baulig <[email protected]>
  190. * ParameterInfo.cs: Added internal constructor.
  191. Thu May 23 17:18:46 CEST 2002 Paolo Molaro <[email protected]>
  192. * Assembly.cs: implemented CreateInstance ().
  193. 2002-05-22 Martin Baulig <[email protected]>
  194. * MethodBase.cs (get_next_table_index): Added `object obj' argument.
  195. Tue May 21 12:07:40 CEST 2002 Paolo Molaro <[email protected]>
  196. * EventInfo.cs: more implementation.
  197. Mon May 20 17:37:39 CEST 2002 Paolo Molaro <[email protected]>
  198. * MonoEvent.cs: fill-in the implementation.
  199. Sat May 4 15:00:39 CEST 2002 Paolo Molaro <[email protected]>
  200. * Assembly.cs, AssemblyName.cs: updates and fixes.
  201. 2002-04-24 Patrik Torstensson <[email protected]>
  202. * MonoProperty.cs (GetValue) : basic implementation to support nunit
  203. * PropertyInfo.cs (GetValue) : call MonoProperty::GetValue instead of returning null
  204. Thu Apr 18 16:40:54 CEST 2002 Paolo Molaro <[email protected]>
  205. * MonoMethod.c: cache the method name.
  206. 2002-04-12 Duncan Mak <[email protected]>
  207. * AssemblyAlgorithmIdAttribute.cs: Fixed typo in AlgorithmId
  208. property.
  209. * AssemblyDelaySignAttribute.cs: Fixed type in DelaySign
  210. attribute.
  211. * AssemblyFileVersionAttribute.cs: Renamed FileVersion property to
  212. Version.
  213. * BindingFlags.cs: Added missing value "PutRefDispProperty".
  214. * FieldAttributes.cs: Removed value "HasSecurity".
  215. * ManifestResourceInfo.cs: Added missing properties FileName,
  216. ReferencedAssembly and ResourceLocation.
  217. * TargetInvocationException.cs: Added the missing constructors.
  218. Fri Apr 12 18:32:34 CEST 2002 Paolo Molaro <[email protected]>
  219. * MonoMethod.cs: make Name property an icall.
  220. 2002-04-08 Nick Drochak <[email protected]>
  221. * DefaultMemberAttribute.cs: Add AttributeUsage attribute for class,
  222. struct and interface.
  223. Fri Apr 5 15:40:24 CEST 2002 Paolo Molaro <[email protected]>
  224. * MonoEvent.cs: remove unused code.
  225. * MonoProperty: implement ToString().
  226. Wed Apr 3 17:59:26 CEST 2002 Paolo Molaro <[email protected]>
  227. * Assembly.cs: implement GetTypes() and GetExportedTypes().
  228. Mon Mar 25 18:54:58 CET 2002 Paolo Molaro <[email protected]>
  229. * MonoEvent.cs: added the needed fields.
  230. 2002-03-20 Martin Baulig <[email protected]>
  231. * ConstructorInfo.cs (Invoke): Implemented, call the abstract Invoke.
  232. * MonoMethod.cs (MonoCMethod.Invoke): Implemented, call InternalInvoke.
  233. 2002-03-14 Dietmar Maurer <[email protected]>
  234. * MonoMethod.cs (Invoke): call InternalInvoke
  235. * MethodBase.cs (Invoke): call virtual invoke function
  236. Thu Mar 7 17:14:20 CET 2002 Paolo Molaro <[email protected]>
  237. * EventInfo.cs: add compiler needed methods.
  238. * MonoMethod.cs: make ToString() return the return type name, too.
  239. 2002-03-07 Nick Drochak <[email protected]>
  240. * BindingFlags.cs: Add missing enum values. Thanks CorCompare.
  241. Tue Mar 5 20:33:14 CET 2002 Paolo Molaro <[email protected]>
  242. * TypeAttributes.cs, MethodImplAttributes.cs: updates to latest spec.
  243. 2002-02-26 Duncan Mak <[email protected]>
  244. * StrongNameKeyPair.cs: Committed for Kevin Winchester ([email protected]>.
  245. 2002-02-24 Nick Drochak <[email protected]>
  246. * AssemblyNameFlags.cs: Use proper member name. Thanks corcompare!
  247. Fri Feb 22 18:54:13 CET 2002 Paolo Molaro <[email protected]>
  248. * MonoField.cs: implement GetValue as an internalcall.
  249. Implemented ToString().
  250. Tue Feb 19 20:36:04 CET 2002 Paolo Molaro <[email protected]>
  251. * Assembly.cs, Module.cs, MonoField.cs, MonoMethod.cs,
  252. MonoProperty.cs, ParameterInfo.cs: Implemented custom attributes
  253. related methods.
  254. Thu Feb 14 18:55:23 CET 2002 Paolo Molaro <[email protected]>
  255. * TypeAttributes.cs: update to latest spec.
  256. Mon Feb 11 19:50:27 CET 2002 Paolo Molaro <[email protected]>
  257. * Assembly.cs: handle throwOnError in GetType() call.
  258. 2002-02-07 Duncan Mak <[email protected]>
  259. * AssemblyName.cs: Implemented ISerializable interface for the
  260. fields that we have.
  261. 2002-02-05 Duncan Mak <[email protected]>
  262. * Missing.cs:
  263. * TargetException.cs: Added in CVS.
  264. 2002-01-31 Duncan Mak <[email protected]>
  265. * ReflectionTypeLoadException.cs: Added missing bits.
  266. 2002-01-23 Duncan Mak <[email protected]>
  267. * AssemblyAlgorithmIdAttribute.cs:
  268. * AssemblyCompanyAttribute.cs:
  269. * AssemblyConfigurationAttribute.cs:
  270. * AssemblyCopyrightAttribute.cs:
  271. * AssemblyCultureAttribute.cs:
  272. * AssemblyDefaultAliasAttribute.cs:
  273. * AssemblyDelaySignAttribute.cs:
  274. * AssemblyDescriptionAttribute.cs:
  275. * AssemblyFileVersionAttribute.cs:
  276. * AssemblyFlagsAttribute.cs:
  277. * AssemblyInformationalVersionAttribute.cs:
  278. * AssemblyKeyFileAttribute.cs:
  279. * AssemblyKeyNameAttribute.cs:
  280. * AssemblyNameProxy.cs:
  281. * AssemblyProductAttribute.cs:
  282. * AssemblyTitleAttribute.cs:
  283. * AssemblyTradeMarkAttribute.cs:
  284. * AssemblyVersionAttribute.cs:
  285. * CustomAttributeFormatException.cs:
  286. * InvalidFilterCriteriaException.cs:
  287. * TargetParameterCountException.cs: Added.
  288. 2002-01-23 Miguel de Icaza <[email protected]>
  289. * Assembly.cs (Assembly.CodeBase): Implement.
  290. (Assembly.FullName): simplistic and broken implementation. Gets
  291. us where we were yesterday.
  292. Code style fix.
  293. Tue Jan 22 22:54:18 CET 2002 Paolo Molaro <[email protected]>
  294. * IReflect.cs: corrected GetMember() return type.
  295. * InterfaceMapping.cs, TypeDelegator.cs: implemented.
  296. Wed Jan 9 19:37:14 CET 2002 Paolo Molaro <[email protected]>
  297. * MonoMethod.cs: ToString () implementation.
  298. 2002-01-04 Ravi Pratap <[email protected]>
  299. * Assembly.cs : Decorate missing bits with the MonoTODO
  300. attribute.
  301. * ConstructorInfo.cs, MonoMethod.cs, MonoProperty.cs, ParameterInfo.cs,
  302. ReflectionTypeLoadException.cs : Ditto.
  303. * FieldInfo.cs : Ditto.
  304. Thu Jan 3 23:25:34 CET 2002 Paolo Molaro <[email protected]>
  305. * Assembly.cs: trow unimplemented exceptions.
  306. Tue Dec 18 18:46:22 CET 2001 Paolo Molaro <[email protected]>
  307. * MonoMethod.cs: implemented GetParameters().
  308. * MonoProperty.cs: PropertyInfo implementation.
  309. * ParameterInfo.cs: implemented.
  310. * PropertyInfo.cs: fixes.
  311. Thu Dec 13 20:18:05 CET 2001 Paolo Molaro <[email protected]>
  312. * FieldInfo.cs: implemented some Is* propeties.
  313. * MethodBase.cs: fixed attribute accessors.
  314. * MonoField.cs: runtime object to represent a field.
  315. * MonoMethod.cs: runtime object to represent a method.
  316. * AssemblyBuilder.cs: GetToken() methods to get tokens for
  317. strings, fields, methods...
  318. * ILGenerator.cs: handle tokens for methods.
  319. Mon Nov 19 13:56:55 CET 2001 Paolo Molaro <[email protected]>
  320. * MethodBase.cs: add internal get_next_table_index() for use in
  321. Reflection.Emit.
  322. Wed Nov 14 16:53:28 CET 2001 Paolo Molaro <[email protected]>
  323. * Assembly.cs: implement some of the Load() methods.
  324. * ConstructorInfo.cs: some missing stubs and fields.
  325. * FieldInfo.cs: IsInitOnly property.
  326. * ParameterInfo.cs: stubs for missing properties.
  327. * ParameterModifier.cs: implemented class.
  328. 2001-11-10 Sean MacIsaac <[email protected]>
  329. * Assembly.cs: Filled in some stub implementations
  330. * ConstructorInfo.cs: Added some stub functions for NUnit
  331. Fri Nov 2 18:29:36 CET 2001 Paolo Molaro <[email protected]>
  332. * AmbiguousMatchException.cs,
  333. * Assembly.cs, Module.cs: updates.
  334. * FieldInfo.cs: better compliance to the spec.
  335. * MethodBase.cs: move call_conv out of the way.
  336. * AssemblyBuilder.cs: don't use internalcalls, more stuff supported.
  337. * FieldBuilder.cs: implemented.
  338. * ILGenerator.cs: implemented some opcode handling.
  339. * Label.cs: add constructor.
  340. * LocalBuilder.cs: implemented.
  341. * MethodBuilder.cs: don't use internalcalls, more implemented stuff.
  342. * ModuleBuilder.cs: don't use internalcalls, more meat here, too.
  343. * ParameterBuilder.cs: implemented.
  344. * PropertyBuilder.cs: implemented.
  345. * TypeBuilder.cs: don't use internalcalls, more stuff working.
  346. Tue Sep 25 16:48:50 CEST 2001 Paolo Molaro <[email protected]>
  347. * ConstructorInfo.cs, MemberFilter.cs, Module.cs: added.
  348. Fri Sep 14 16:12:08 CEST 2001 Paolo Molaro <[email protected]>
  349. * MethodBase.cs, MethodInfo.cs: added.
  350. Thu Sep 13 18:05:16 CEST 2001 Paolo Molaro <[email protected]>
  351. * Assembly.cs: added stub code.
  352. 2001-07-18 Michael Lambert <[email protected]>
  353. * BindingFlags.cs: Add.
  354. >>>>>>> 1.52