Example #1
0
        public static Instruction Create(Type type)
        {
            // Boxed enums can be unboxed as their underlying types:
            Type underlyingType = type.GetTypeInfo().IsEnum ? Enum.GetUnderlyingType(type) : TypeUtils.GetNonNullableType(type);

            switch (underlyingType.GetTypeCode())
            {
            case TypeCode.SByte: return(s_SByte ?? (s_SByte = new AndSByte()));

            case TypeCode.Byte: return(s_byte ?? (s_byte = new AndByte()));

            case TypeCode.Int16: return(s_int16 ?? (s_int16 = new AndInt16()));

            case TypeCode.Int32: return(s_int32 ?? (s_int32 = new AndInt32()));

            case TypeCode.Int64: return(s_int64 ?? (s_int64 = new AndInt64()));

            case TypeCode.UInt16: return(s_UInt16 ?? (s_UInt16 = new AndUInt16()));

            case TypeCode.UInt32: return(s_UInt32 ?? (s_UInt32 = new AndUInt32()));

            case TypeCode.UInt64: return(s_UInt64 ?? (s_UInt64 = new AndUInt64()));

            case TypeCode.Boolean: return(s_bool ?? (s_bool = new AndBool()));

            default:
                throw Error.ExpressionNotSupportedForType("And", type);
            }
        }
Example #2
0
        public static Instruction Create(Type type)
        {
            switch (type.GetNonNullableType().GetTypeCode())
            {
            case TypeCode.SByte: return(s_SByte ?? (s_SByte = new AndSByte()));

            case TypeCode.Int16: return(s_Int16 ?? (s_Int16 = new AndInt16()));

            case TypeCode.Int32: return(s_Int32 ?? (s_Int32 = new AndInt32()));

            case TypeCode.Int64: return(s_Int64 ?? (s_Int64 = new AndInt64()));

            case TypeCode.Byte: return(s_Byte ?? (s_Byte = new AndByte()));

            case TypeCode.UInt16: return(s_UInt16 ?? (s_UInt16 = new AndUInt16()));

            case TypeCode.UInt32: return(s_UInt32 ?? (s_UInt32 = new AndUInt32()));

            case TypeCode.UInt64: return(s_UInt64 ?? (s_UInt64 = new AndUInt64()));

            case TypeCode.Boolean: return(s_Boolean ?? (s_Boolean = new AndBoolean()));

            default:
                throw ContractUtils.Unreachable;
            }
        }
Example #3
0
        public static Instruction Create(Type type)
        {
            switch (type.GetNonNullableType().GetTypeCode())
            {
            case TypeCode.SByte: return(s_SByte ?? (s_SByte = new AndSByte()));

            case TypeCode.Int16: return(s_Int16 ?? (s_Int16 = new AndInt16()));

            case TypeCode.Int32: return(s_Int32 ?? (s_Int32 = new AndInt32()));

            case TypeCode.Int64: return(s_Int64 ?? (s_Int64 = new AndInt64()));

            case TypeCode.Byte: return(s_Byte ?? (s_Byte = new AndByte()));

            case TypeCode.UInt16: return(s_UInt16 ?? (s_UInt16 = new AndUInt16()));

            case TypeCode.UInt32: return(s_UInt32 ?? (s_UInt32 = new AndUInt32()));

            case TypeCode.UInt64: return(s_UInt64 ?? (s_UInt64 = new AndUInt64()));

            case TypeCode.Boolean: return(s_Boolean ?? (s_Boolean = new AndBoolean()));

            default:
                throw Error.ExpressionNotSupportedForType("And", type);
            }
        }
Example #4
0
        public static Instruction Create(Type type)
        {
            // Boxed enums can be unboxed as their underlying types:
            Type underlyingType = type.GetTypeInfo().IsEnum ? Enum.GetUnderlyingType(type) : type.GetNonNullableType();

            switch (underlyingType.GetTypeCode())
            {
                case TypeCode.SByte: return s_SByte ?? (s_SByte = new AndSByte());
                case TypeCode.Int16: return s_Int16 ?? (s_Int16 = new AndInt16());
                case TypeCode.Int32: return s_Int32 ?? (s_Int32 = new AndInt32());
                case TypeCode.Int64: return s_Int64 ?? (s_Int64 = new AndInt64());
                case TypeCode.Byte: return s_Byte ?? (s_Byte = new AndByte());
                case TypeCode.UInt16: return s_UInt16 ?? (s_UInt16 = new AndUInt16());
                case TypeCode.UInt32: return s_UInt32 ?? (s_UInt32 = new AndUInt32());
                case TypeCode.UInt64: return s_UInt64 ?? (s_UInt64 = new AndUInt64());
                case TypeCode.Boolean: return s_Boolean ?? (s_Boolean = new AndBoolean());
                default:
                    throw Error.ExpressionNotSupportedForType("And", type);
            }
        }
Example #5
0
        public static Instruction Create(Type type)
        {
            // Boxed enums can be unboxed as their underlying types:
            switch (System.Dynamic.Utils.TypeExtensions.GetTypeCode(type.GetTypeInfo().IsEnum ? Enum.GetUnderlyingType(type) : TypeUtils.GetNonNullableType(type)))
            {
                case TypeCode.SByte: return s_SByte ?? (s_SByte = new AndSByte());
                case TypeCode.Byte: return s_byte ?? (s_byte = new AndByte());
                case TypeCode.Int16: return s_int16 ?? (s_int16 = new AndInt16());
                case TypeCode.Int32: return s_int32 ?? (s_int32 = new AndInt32());
                case TypeCode.Int64: return s_int64 ?? (s_int64 = new AndInt64());

                case TypeCode.UInt16: return s_UInt16 ?? (s_UInt16 = new AndUInt16());
                case TypeCode.UInt32: return s_UInt32 ?? (s_UInt32 = new AndUInt32());
                case TypeCode.UInt64: return s_UInt64 ?? (s_UInt64 = new AndUInt64());
                case TypeCode.Boolean: return s_bool ?? (s_bool = new AndBool());

                default:
                    throw Error.ExpressionNotSupportedForType("And", type);
            }
        }