|
// 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 System;
using System.Composition;
using Microsoft.CodeAnalysis.Editor;
using Microsoft.CodeAnalysis.Host;
using Microsoft.CodeAnalysis.Host.Mef;
namespace Microsoft.CodeAnalysis.CodeRefactorings
{
[ExportWorkspaceServiceFactory(typeof(ICodeRefactoringHelpersService), ServiceLayer.Editor), Shared]
internal class EditorLayerCodeActionHelpersService : IWorkspaceServiceFactory
{
private readonly IInlineRenameService _renameService;
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public EditorLayerCodeActionHelpersService(IInlineRenameService renameService)
=> _renameService = renameService;
public IWorkspaceService CreateService(HostWorkspaceServices workspaceServices)
=> new CodeActionHelpersService(this);
private class CodeActionHelpersService : ICodeRefactoringHelpersService
{
private readonly EditorLayerCodeActionHelpersService _service;
public CodeActionHelpersService(EditorLayerCodeActionHelpersService service)
=> _service = service;
public bool ActiveInlineRenameSession
{
get
{
return _service._renameService.ActiveSession != null;
}
}
}
}
}
|