1 instantiation of CodeTypeRef
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\CodeTypeRef.cs (1)
33var newElement = new CodeTypeRef(state, parent, projectId, typeSymbol);
18 references to CodeTypeRef
Microsoft.VisualStudio.LanguageServices.CSharp (2)
CodeModel\CSharpCodeModelService.cs (2)
656return CodeTypeRef.Create(state, null, projectId, compilation.GetSpecialType(specialType)); 690return CodeTypeRef.Create(state, parent, projectId, typeSymbol);
Microsoft.VisualStudio.LanguageServices.Implementation (16)
CodeModel\CodeTypeRef.cs (4)
33var newElement = new CodeTypeRef(state, parent, projectId, typeSymbol); 84return CodeTypeRef.Create(this.State, null, _projectId, arrayType); 94return CodeTypeRef.Create(this.State, this, _projectId, ((IArrayTypeSymbol)typeSymbol).ElementType); 98return CodeTypeRef.Create(this.State, this, _projectId, ((IPointerTypeSymbol)typeSymbol).PointedAtType);
CodeModel\ExternalElements\ExternalCodeEvent.cs (1)
125return CodeTypeRef.Create(this.State, this, this.ProjectId, EventSymbol.Type);
CodeModel\ExternalElements\ExternalCodeFunction.cs (1)
99return CodeTypeRef.Create(this.State, this, this.ProjectId, MethodSymbol.ReturnType);
CodeModel\ExternalElements\ExternalCodeParameter.cs (1)
60return CodeTypeRef.Create(this.State, this, this.ProjectId, ParameterSymbol.Type);
CodeModel\ExternalElements\ExternalCodeProperty.cs (1)
89return CodeTypeRef.Create(this.State, this, this.ProjectId, PropertySymbol.Type);
CodeModel\ExternalElements\ExternalCodeVariable.cs (1)
94return CodeTypeRef.Create(this.State, this, this.ProjectId, type);
CodeModel\InternalElements\CodeDelegate.cs (1)
92return CodeTypeRef.Create(this.State, this, GetProjectId(), LookupInvokeMethod().ReturnType);
CodeModel\InternalElements\CodeEvent.cs (1)
151return CodeTypeRef.Create(this.State, this, GetProjectId(), EventSymbol.Type);
CodeModel\InternalElements\CodeFunction.cs (1)
152return CodeTypeRef.Create(this.State, this, GetProjectId(), MethodSymbol.ReturnType);
CodeModel\InternalElements\CodeParameter.cs (2)
148return CodeTypeRef.Create(this.State, this, GetProjectId(), ParameterSymbol.Type); 208this.Type = CodeTypeRef.Create(this.State, this, GetProjectId(), newType);
CodeModel\InternalElements\CodeProperty.cs (1)
186return CodeTypeRef.Create(this.State, this, GetProjectId(), PropertySymbol.Type);
CodeModel\InternalElements\CodeVariable.cs (1)
144return CodeTypeRef.Create(this.State, this, GetProjectId(), type);