ChangeLog 21 KB

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