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