1 write to CodeModelService
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\CodeModelState.cs (1)
44this.CodeModelService = languageServices.GetService<ICodeModelService>();
7 references to CodeModelService
Microsoft.VisualStudio.LanguageServices.Implementation (7)
CodeModel\AbstractCodeModelObject.cs (1)
58get { return this.State.CodeModelService; }
CodeModel\Collections\ExternalMemberCollection.cs (2)
64childrenBuilder.Add(this.State.CodeModelService.CreateExternalCodeElement(this.State, _projectId, member)); 70childrenBuilder.Add(this.State.CodeModelService.CreateExternalCodeElement(this.State, _projectId, typeMember));
CodeModel\Collections\ExternalNamespaceEnumerator.cs (1)
88yield return state.CodeModelService.CreateCodeType(state, projectId, namedType);
CodeModel\Collections\ExternalTypeCollection.cs (2)
44element = this.State.CodeModelService.CreateCodeType(this.State, _projectId, _typeSymbols[index]); 58element = this.State.CodeModelService.CreateCodeType(this.State, _projectId, _typeSymbols[index]);
CodeModel\Collections\NodeSnapshot.cs (1)
40get { return _state.CodeModelService; }