ChangeLog 37 KB

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