ChangeLog 43 KB

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