Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;

namespace Microsoft.CodeAnalysis.CSharp.Symbols
{
internal enum GeneratedNameKind
Expand Down Expand Up @@ -35,6 +37,15 @@ internal enum GeneratedNameKind
AsyncBuilderField = 't',
DynamicCallSiteContainerType = 'o',
DynamicCallSiteField = 'p',

// Deprecated - emitted by Dev12, but not by Roslyn.
// Don't reuse the values because the debugger might encounter them when consuming old binaries.
[Obsolete] Deprecated_OuterscopeLocals = '6',
[Obsolete] Deprecated_IteratorInstance = 'a',
[Obsolete] Deprecated_InitializerLocal = 'g',
[Obsolete] Deprecated_AnonymousTypeTypeParameter = 'j',
[Obsolete] Deprecated_DynamicDelegate = 'q',
[Obsolete] Deprecated_ComrefCallLocal = 'r',
}

internal static class GeneratedNameKindExtensions
Expand Down