File: src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationDestructorSymbol.cs
Web Access
Project: src\src\CodeStyle\Core\CodeFixes\Microsoft.CodeAnalysis.CodeStyle.Fixes.csproj (Microsoft.CodeAnalysis.CodeStyle.Fixes)
// 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.Collections.Immutable;
 
namespace Microsoft.CodeAnalysis.CodeGeneration;
 
internal class CodeGenerationDestructorSymbol(
    INamedTypeSymbol containingType,
    ImmutableArray<AttributeData> attributes) : CodeGenerationMethodSymbol(containingType,
         attributes,
         Accessibility.NotApplicable,
         default,
         returnType: null,
         refKind: RefKind.None,
         explicitInterfaceImplementations: default,
         name: string.Empty,
         typeParameters: ImmutableArray<ITypeParameterSymbol>.Empty,
         parameters: ImmutableArray<IParameterSymbol>.Empty,
         returnTypeAttributes: ImmutableArray<AttributeData>.Empty)
{
    public override MethodKind MethodKind => MethodKind.Destructor;
 
    protected override CodeGenerationSymbol Clone()
    {
        var result = new CodeGenerationDestructorSymbol(this.ContainingType, this.GetAttributes());
 
        CodeGenerationDestructorInfo.Attach(result,
            CodeGenerationDestructorInfo.GetTypeName(this),
            CodeGenerationDestructorInfo.GetStatements(this));
 
        return result;
    }
}