updated browser capabilities file
[mono.git] / mcs / gmcs / convert.cs
index b6dfab95c44ad295fac7eada0dd024e9e429ffdc..6e9407ecc1257ef037d2a6d30f74f67754318f5a 100644 (file)
@@ -37,6 +37,9 @@ namespace Mono.CSharp {
                                expr.Emit (null);
                        }
 
+                       if (expr_type == TypeManager.void_type)
+                               return null;
+
                        //
                        // notice that it is possible to write "ValueType v = 1", the ValueType here
                        // is an abstract class, and not really a value type, so we apply the same rules.
@@ -48,15 +51,15 @@ namespace Mono.CSharp {
                                if (expr_type.IsPointer)
                                        return null;
 
-                               if (expr_type.IsValueType)
+                               if (TypeManager.IsValueType (expr_type))
                                        return new BoxedCast (expr);
                                if (expr_type.IsClass || expr_type.IsInterface || expr_type == TypeManager.enum_type)
                                        return new EmptyCast (expr, target_type);
                        } else if (target_type == TypeManager.value_type) {
-                               if (expr_type.IsValueType)
+                               if (TypeManager.IsValueType (expr_type))
                                        return new BoxedCast (expr);
                                if (expr is NullLiteral)
-                                       return new BoxedCast (expr);
+                                       return new NullCast (expr, target_type);
                        } else if (expr_type.IsSubclassOf (target_type)) {
                                //
                                // Special case: enumeration to System.Enum.
@@ -88,8 +91,11 @@ namespace Mono.CSharp {
                                        if (TypeManager.ImplementsInterface (expr_type, target_type)){
                                                if (expr_type.IsClass)
                                                        return new EmptyCast (expr, target_type);
-                                               else if (expr_type.IsValueType)
+                                               else if (TypeManager.IsValueType (expr_type) ||
+                                                        TypeManager.IsEnumType (expr_type))
                                                        return new BoxedCast (expr, target_type);
+                                               else
+                                                       return new EmptyCast (expr, target_type);
                                        }
                                }
 
@@ -137,6 +143,10 @@ namespace Mono.CSharp {
                                    expr_type.IsSubclassOf (TypeManager.delegate_type))
                                        if (target_type == TypeManager.icloneable_type)
                                                return new EmptyCast (expr, target_type);
+
+                               // from a generic type definition to a generic instance.
+                               if (TypeManager.IsEqualGenericType (expr_type, target_type))
+                                       return new EmptyCast (expr, target_type);
                                
                                return null;
 
@@ -157,12 +167,12 @@ namespace Mono.CSharp {
                        // This is the boxed case.
                        //
                        if (target_type == TypeManager.object_type) {
-                               if (expr_type.IsClass || expr_type.IsValueType ||
+                               if (expr_type.IsClass || TypeManager.IsValueType (expr_type) ||
                                    expr_type.IsInterface || expr_type == TypeManager.enum_type)
                                        return true;
-                       } else if (expr_type.IsSubclassOf (target_type)) {
+                       } else if (expr_type.IsSubclassOf (target_type)) 
                                return true;
-                       else {
+                       else {
                                // Please remember that all code below actually comes
                                // from ImplicitReferenceConversion so make sure code remains in sync
                                
@@ -218,7 +228,10 @@ namespace Mono.CSharp {
                                if (expr is NullLiteral && !target_type.IsValueType &&
                                    !TypeManager.IsEnumType (target_type))
                                        return true;
-                               
+
+                               // from a generic type definition to a generic instance.
+                               if (TypeManager.IsEqualGenericType (expr_type, target_type))
+                                       return true;
                        }
                        return false;
                }
@@ -233,7 +246,7 @@ namespace Mono.CSharp {
                                                                    Type target_type, Location loc)
                {
                        Type expr_type = expr.Type;
-                       
+
                        //
                        // Attempt to do the implicit constant expression conversions
 
@@ -428,7 +441,7 @@ namespace Mono.CSharp {
 
                         //Console.WriteLine ("Expr is {0}", expr);
                         //Console.WriteLine ("{0} -> {1} ?", expr_type, target_type);
-                       if (expr_type == target_type)
+                       if (expr_type.Equals (target_type))
                                return true;
 
                        // First numeric conversions 
@@ -539,7 +552,10 @@ namespace Mono.CSharp {
                        
                        if (ImplicitReferenceConversionExists (expr, target_type))
                                return true;
-                       
+
+                       //
+                       // Implicit Constant Expression Conversions
+                       //
                        if (expr is IntConstant){
                                int value = ((IntConstant) expr).Value;
 
@@ -985,9 +1001,8 @@ namespace Mono.CSharp {
                ///   in a context that expects a `target_type'. 
                /// </summary>
                static public Expression ImplicitConversion (EmitContext ec, Expression expr,
-                                                         Type target_type, Location loc)
+                                                            Type target_type, Location loc)
                {
-                       Type expr_type = expr.Type;
                        Expression e;
 
                        if (target_type == null)
@@ -1021,7 +1036,19 @@ namespace Mono.CSharp {
                        Type expr_type = expr.Type;
                        Expression e;
 
-                       if (expr_type == target_type && !(expr is NullLiteral))
+                       if (expr.eclass == ExprClass.MethodGroup){
+                               if (!TypeManager.IsDelegateType (target_type)){
+                                       Report.Error (428, loc,
+                                                     String.Format (
+                                                          "Cannot convert method group to `{0}', since it is not a delegate",
+                                                          TypeManager.CSharpName (target_type)));
+                                       return null;
+                               }
+
+                               return ImplicitDelegateCreation.Create (ec, (MethodGroupExpr) expr, target_type, loc);
+                       }
+
+                       if (expr_type.Equals (target_type) && !(expr is NullLiteral))
                                return expr;
 
                        e = ImplicitNumericConversion (ec, expr, target_type, loc);
@@ -1081,7 +1108,7 @@ namespace Mono.CSharp {
                                if (value >= SByte.MinValue && value <= SByte.MaxValue)
                                        return new SByteConstant ((sbyte) value);
                        } else if (target_type == TypeManager.byte_type){
-                               if (Byte.MinValue >= 0 && value <= Byte.MaxValue)
+                               if (value >= Byte.MinValue && value <= Byte.MaxValue)
                                        return new ByteConstant ((byte) value);
                        } else if (target_type == TypeManager.short_type){
                                if (value >= Int16.MinValue && value <= Int16.MaxValue)
@@ -1141,7 +1168,7 @@ namespace Mono.CSharp {
                                                                     Type target_type, Location loc)
                {
                        Expression e;
-                       
+
                        e = ImplicitConversion (ec, source, target_type, loc);
                        if (e != null)
                                return e;
@@ -1152,6 +1179,13 @@ namespace Mono.CSharp {
                                              "float type, use F suffix to create a float literal");
                        }
 
+                       if (source is Constant){
+                               Constant c = (Constant) source;
+
+                               Expression.Error_ConstantValueCannotBeConverted (loc, c.AsString (), target_type);
+                               return null;
+                       }
+                       
                        Error_CannotImplicitConversion (loc, source.Type, target_type);
 
                        return null;
@@ -1480,6 +1514,13 @@ namespace Mono.CSharp {
                        if (source_type == TypeManager.object_type && !target_is_value_type)
                                return new ClassCast (source, target_type);
 
+                       //
+                       // Unboxing conversion.
+                       //
+                       if (((source_type == TypeManager.enum_type &&
+                               !(source is EmptyCast)) ||
+                               source_type == TypeManager.value_type) && target_is_value_type)
+                               return new UnboxCast (source, target_type);
 
                        //
                        // From any class S to any class-type T, provided S is a base class of T
@@ -1514,10 +1555,14 @@ namespace Mono.CSharp {
                        // sealed, or provided T implements S.
                        //
                        if (source_type.IsInterface) {
-                               if (!target_type.IsSealed || TypeManager.ImplementsInterface (target_type, source_type))
-                                       return new ClassCast (source, target_type);
-                               else
-                                       return null;
+                               if (!target_type.IsSealed || TypeManager.ImplementsInterface (target_type, source_type)) {
+                                       if (target_type.IsClass)
+                                               return new ClassCast (source, target_type);
+                                       else
+                                               return new UnboxCast (source, target_type);
+                               }
+
+                               return null;
                        }
                        
                        // From an array type S with an element type Se to an array type T with an 
@@ -1611,14 +1656,13 @@ namespace Mono.CSharp {
                        //
                        if (expr_type == TypeManager.object_type && target_type.IsValueType){
                                if (expr is NullLiteral){
-                                       Report.Error (37, "Cannot convert null to value type `" +
-                                                      TypeManager.CSharpName (expr_type) + "'");
+                                       Report.Error (37, loc, "Cannot convert null to value type `" +
+                                                      TypeManager.CSharpName (target_type) + "'");
                                        return null;
                                }
                                return new UnboxCast (expr, target_type);
                        }
 
-                       
                        ne = ExplicitReferenceConversion (expr, target_type);
                        if (ne != null)
                                return ne;