5 references to TypeImpl
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (5)
Debugger\MemberInfo\ParameterInfoImpl.cs (1)
42
public override Type ParameterType => new
TypeImpl
(Parameter.ParameterType);
Debugger\MemberInfo\TypeImpl.cs (4)
30
return type == null ? null : new
TypeImpl
(type);
184
return Type.GetGenericArguments().Select(t => new
TypeImpl
(t)).ToArray();
194
return Type.GetInterfaces().Select(i => new
TypeImpl
(i)).ToArray();
225
return new
TypeImpl
((System.Reflection.TypeInfo)member);