ChangeLog 34 KB

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