ChangeLog 16 KB

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