2
0

ChangeLog 20 KB

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