File: IOperationWrapper.cs
Web Access
Project: ..\..\..\src\Microsoft.CodeAnalysis.NetAnalyzers\tests\Test.Utilities\Test.Utilities.csproj (Test.Utilities)
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the MIT license.  See License.txt in the project root for license information.
 
#if HAS_IOPERATION
 
namespace Analyzer.Utilities.Lightup
{
    using Microsoft.CodeAnalysis;
 
    internal interface IOperationWrapper
    {
        IOperation? WrappedOperation { get; }
    }
}
 
#endif