|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces;
using Microsoft.VisualStudio.LanguageServices;
namespace Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests.CodeModel
{
internal class MockInvisibleEditor : IInvisibleEditor
{
private readonly DocumentId _documentId;
private readonly TestWorkspace _workspace;
public MockInvisibleEditor(DocumentId document, TestWorkspace workspace)
{
_documentId = document;
_workspace = workspace;
}
public Microsoft.VisualStudio.Text.ITextBuffer TextBuffer
{
get
{
return _workspace.GetTestDocument(_documentId).GetTextBuffer();
}
}
public void Dispose()
{
}
}
}
|