ChangeLog 28 KB

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