ChangeLog 16 KB

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