ChangeLog 23 KB

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