| File: Symbols\Attributes\WellKnownAttributeData.cs | Web Access |
| Project: src\roslyn\src\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj (Microsoft.CodeAnalysis) |
// 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.Diagnostics; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { /// <summary> /// Base class for storing information decoded from well-known custom attributes. /// </summary> internal abstract class WellKnownAttributeData { #pragma warning disable CA1802 // Remove suppression once https://github.com/dotnet/roslyn/issues/20894 is fixed /// <summary> /// Used to distinguish cases when attribute is applied with null value and when attribute is not applied. /// For some well-known attributes, the latter case will return string stored in <see cref="StringMissingValue"/> /// field. /// </summary> public static readonly string StringMissingValue = nameof(StringMissingValue); #pragma warning restore CA1802 #if DEBUG private bool _isSealed; private bool _anyDataStored; #endif public WellKnownAttributeData() { #if DEBUG _isSealed = false; _anyDataStored = false; #endif } [Conditional("DEBUG")] protected void VerifySealed(bool expected = true) { #if DEBUG Debug.Assert(_isSealed == expected); #endif } [Conditional("DEBUG")] internal void VerifyDataStored(bool expected = true) { #if DEBUG Debug.Assert(_anyDataStored == expected); #endif } [Conditional("DEBUG")] protected void SetDataStored() { #if DEBUG _anyDataStored = true; #endif } [Conditional("DEBUG")] internal static void Seal(WellKnownAttributeData data) { #if DEBUG if (data != null) { Debug.Assert(!data._isSealed); Debug.Assert(data._anyDataStored); data._isSealed = true; } #endif } } }