64 references to DkmClrType
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (39)
DebuggerBrowsableAttributeTests.cs (3)
233
type: new
DkmClrType
((TypeImpl)typeS),
356
type: new
DkmClrType
((TypeImpl)typeC),
483
type: new
DkmClrType
((TypeImpl)typeA),
DebuggerDisplayAttributeTests.cs (1)
660
:
base
((TypeImpl)innerType)
DebuggerVisualizerAttributeTests.cs (1)
44
type: new
DkmClrType
((TypeImpl)type),
DynamicTests.cs (8)
25
var evalResult = FormatResult(rootExpr, rootExpr, value, declaredType: new
DkmClrType
((TypeImpl)typeof(object)), declaredTypeInfo: MakeCustomTypeInfo(true));
69
var evalResult = FormatResult(rootExpr, rootExpr, value, new
DkmClrType
((TypeImpl)typeC_Constructed2), MakeCustomTypeInfo(false, true, false, false, true));
98
var evalResult = FormatResult(rootExpr, rootExpr, value, new
DkmClrType
((TypeImpl)typeInner_Constructed), MakeCustomTypeInfo(false, true, false));
133
var evalResult = FormatResult(rootExpr, rootExpr, value, new
DkmClrType
((TypeImpl)typeC_Constructed), MakeCustomTypeInfo(false, false, false, true, false));
178
var evalResult = FormatResult(rootExpr, rootExpr, value, new
DkmClrType
((TypeImpl)typeC_Constructed), MakeCustomTypeInfo(false, true, false));
213
var evalResult = FormatResult(rootExpr, rootExpr, value, new
DkmClrType
((TypeImpl)typeDerived_Constructed), MakeCustomTypeInfo(false, true, false));
235
var evalResult = FormatResult(rootExpr, rootExpr, value, declaredType: new
DkmClrType
((TypeImpl)typeof(object[])), declaredTypeInfo: MakeCustomTypeInfo(false, true));
257
var evalResult = FormatResult("typevars", "typevars", value, new
DkmClrType
((TypeImpl)reflectionType), MakeCustomTypeInfo(false, true, false, false, true));
DynamicViewTests.cs (10)
30
var type = new
DkmClrType
((TypeImpl)o.GetType());
52
var type = new
DkmClrType
((TypeImpl)o.GetType());
81
var type = new
DkmClrType
((TypeImpl)o.GetType());
102
var type = new
DkmClrType
((TypeImpl)o.GetType());
135
var type = new
DkmClrType
((TypeImpl)o.GetType());
155
var type = new
DkmClrType
((TypeImpl)typeof(object).Assembly.GetType(comObjectTypeName));
172
var type = new
DkmClrType
((TypeImpl)typeof(IDynamicMetaObjectProvider));
189
var type = new
DkmClrType
((TypeImpl)typeof(ExpandoObject));
284
var type = new
DkmClrType
((TypeImpl)o.GetType());
301
var type = new
DkmClrType
((TypeImpl)o.GetType());
ExpansionTests.cs (6)
1845
var evalResult = FormatResult("a", value, new
DkmClrType
((TypeImpl)declaredType));
1967
result = FormatResult("a", value, new
DkmClrType
((TypeImpl)typeA));
1999
result = FormatResult("b", value, new
DkmClrType
((TypeImpl)typeB));
2164
var result = FormatResult("b", value, new
DkmClrType
((TypeImpl)typeB));
2203
var result = FormatResult("b", value, new
DkmClrType
((TypeImpl)typeB));
2235
var result = FormatResult("c", value, new
DkmClrType
((TypeImpl)typeC));
FullNameTests.cs (1)
304
var root = FormatResult("o", value, new
DkmClrType
((TypeImpl)declaredType));
FunctionPointerTests.cs (1)
80
return CreateDkmClrValue(DkmClrValue.UnboxPointer(fieldValue), new
DkmClrType
(FunctionPointerType.Instance));
Helpers\TestTypeExtensions.cs (1)
21
var clrType = new
DkmClrType
((TypeImpl)type);
ObjectIdTests.cs (2)
21
var objectType = new
DkmClrType
((TypeImpl)typeof(object));
108
var evalResult = FormatResult("o", value, new
DkmClrType
((TypeImpl)type.BaseType));
ValueFormattingTests.cs (5)
670
value: null, hostObjectValue: null, new
DkmClrType
((TypeImpl)typeof(int)),
680
value: null, hostObjectValue: null, new
DkmClrType
((TypeImpl)typeof(char)),
690
value: null, hostObjectValue: null, new
DkmClrType
((TypeImpl)typeof(IntPtr)),
700
value: null, hostObjectValue: null, new
DkmClrType
((TypeImpl)typeof(UIntPtr)),
710
value: null, hostObjectValue: null, new
DkmClrType
((TypeImpl)typeof(TestEnum)),
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (2)
Debugger\Engine\DkmClrType.cs (1)
206
attributes.Add(new DkmClrDebuggerTypeProxyAttribute(new
DkmClrType
((TypeImpl)proxyType)));
ResultProviderTestBase.cs (1)
73
new
DkmClrType
((TypeImpl)type),
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.UnitTests (23)
DynamicViewTests.vb (10)
27
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
48
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
76
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
96
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
126
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
145
Dim type = New
DkmClrType
(CType(GetType(Object).Assembly.GetType(comObjectTypeName), TypeImpl))
161
Dim type = New
DkmClrType
(CType(GetType(IDynamicMetaObjectProvider), TypeImpl))
177
Dim type = New
DkmClrType
(CType(GetType(ExpandoObject), TypeImpl))
268
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
284
Dim type = New
DkmClrType
(CType(o.GetType(), TypeImpl))
ExpansionTests.vb (5)
439
Dim result = FormatResult("a", value, New
DkmClrType
(CType(declaredType, TypeImpl)))
466
result = FormatResult("a", value, New
DkmClrType
(CType(typeA, TypeImpl)))
494
result = FormatResult("b", value, New
DkmClrType
(CType(typeB, TypeImpl)))
668
Dim result = FormatResult("b", value, New
DkmClrType
(CType(typeB, TypeImpl)))
695
Dim result = FormatResult("c", value, New
DkmClrType
(CType(typeC, TypeImpl)))
Helpers\TestTypeExtensions.vb (1)
20
Dim clrType = New
DkmClrType
(New TypeImpl(type))
ObjectIdTests.vb (1)
18
Dim objectType = New
DkmClrType
(CType(GetType(Object), TypeImpl))
ValueFormatterTests.vb (6)
584
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(Integer), TypeImpl)),
592
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(Char), TypeImpl)),
600
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(IntPtr), TypeImpl)),
608
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(UIntPtr), TypeImpl)),
616
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(TestEnum), TypeImpl)),
625
Dim clrValue = New DkmClrValue(value:=Nothing, hostObjectValue:=Nothing, New
DkmClrType
(CType(GetType(DateTime), TypeImpl)),