Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-12-01Added support for function pointer types.jfrijters
2011-12-01- Rewrote custom modifier handling to retain ordering.jfrijters
2011-09-30Added API extension to query custom attributes on interfaceimpl records.jfrijters
2011-03-21Use a bit in typeFlags to mark System.Enum and System.ValueType and detect th...jfrijters
2011-03-17Added support for array Type sizes/lower bounds.jfrijters
2011-03-17- Added API extension to query the types exported from a module.jfrijters
2011-03-16Added API extension for creating missing methods and fields.jfrijters
2011-03-14- Removed TypeBuilder.__SetStructLayoutAttribute().jfrijters
2011-03-13Type parameter type names need not assembly qualified if the types live in th...jfrijters
2011-03-13Bug fix:jfrijters
2011-03-09Allow Type.FullName to be used on generic type instance that uses missing typ...jfrijters
2011-03-09Allow Type.GetTypeCode() to work with missing mscorlib (for primitive types).jfrijters
2011-03-06Add support for returning pseudo-custom attributes based on missing types.jfrijters
2011-03-06Added Type.IsGenericTypeInstance to make it easier (and more efficient) to te...jfrijters
2011-03-06Allow MakeGenericType() to be used on missing type.jfrijters
2011-03-03Added support for missing fields.jfrijters
2011-03-03Allow missing types and methods to be used in emitted assembly.jfrijters
2011-02-14Optimized the Type == operator.jfrijters
2011-01-26Added support for resolving methods in missing types (primarily to enable Cus...jfrijters
2011-01-23Add support for reflecting on assemblies without loading mscorlib (or with pa...jfrijters
2011-01-20Move missing type support into universe and optionally allow missing types to...jfrijters
2011-01-20More type name fixes. This time to support the fact that the CLR and Mono bot...jfrijters
2011-01-19Fix for GenericTypeInstance.__ContainsMissingType. Thanks to Marek for report...jfrijters
2011-01-18Added support for resolving MissingTypes in AssemblyBuilder.jfrijters
2011-01-14Added Type.__ContainsMissingType to easily check for missing types in a const...jfrijters
2011-01-14Add support for reading signatures with instantiations of generic missing type.jfrijters
2011-01-13Rename __IsMissingType to __IsMissing to make it easier if/when we add suppor...jfrijters
2011-01-13Added support for magic missing assemblies that resolve missing types to allo...jfrijters
2011-01-13Fixed resolving nested type by name.jfrijters
2011-01-13Fixed Type.GetNestedType(). The name passed in is not escaped, so we should m...jfrijters
2011-01-13Prevent external subclassing. It's not part of the design to suppor that, now...jfrijters
2011-01-12Final set of Name/Namespace/FullName fixes to make everything more compatible...jfrijters
2011-01-12Added virtual __Name and __Namespace properties to Type to allow the real (fr...jfrijters
2010-11-29Add support for assembly custom attributes on modules (they are applied to a ...jfrijters
2010-06-30It turns out that "multi dimensional" vectors have "multi dimensional" constr...jfrijters
2010-06-28Re-instroduced generic type instantation for "identity" instantations of Type...jfrijters
2010-06-28Implemented __GetDeclaredMethods() for ArrayType and MultiArrayType.jfrijters
2010-05-21Three IsAssignableFrom fixes:jfrijters
2010-05-20Implemented custom attribute filtering at the source. Added support for custo...jfrijters
2010-05-20Implemented Type.IsAssignableFrom() (minus co-/contravariance).jfrijters
2010-05-07Introduced Type.GetEnumUnderlyingTypeImpl() to avoid CheckBaked for our own u...jfrijters
2010-05-07Removed attributes that aren't pseudo custom attributes from pseudo custom at...jfrijters
2010-05-07Added null check.jfrijters
2010-05-07It turns out that the "identity" generic type instantation should return the ...jfrijters
2010-05-07Removed support for pseudo custom attributes TypeForwardedToAttribute and Def...jfrijters
2010-05-06Constructed types (Generic types, arrays and pointers) should forward CheckBa...jfrijters
2010-05-06Removed CheckBaked() from __GetDeclaredXxx methods and moved it to .NET compa...jfrijters
2010-05-06Fixed Type.GetEnumUnderlyingType(). Only for EnumBuilder should it work on un...jfrijters
2010-04-18Added support for custom modifiers in generic type instantions (in signatures).jfrijters
2010-04-18Introduced Empty<T> to cache zero length arrays.jfrijters