提交 b3e8a1ff 编写于 作者: C CyrusNajmabadi

Don't use a name that we then have to undo.

上级 6aca895c
......@@ -844,7 +844,7 @@ public bool TryGetDeclaredSymbolInfo(SyntaxNode node, out DeclaredSymbolInfo dec
case SyntaxKind.IndexerDeclaration:
var indexerDecl = (IndexerDeclarationSyntax)node;
declaredSymbolInfo = new DeclaredSymbolInfo(
WellKnownMemberNames.Indexer, GetIndexerSuffix(indexerDecl),
"this", GetIndexerSuffix(indexerDecl),
GetContainerDisplayName(node.Parent),
GetFullyQualifiedContainerName(node.Parent),
DeclaredSymbolInfoKind.Indexer,
......
......@@ -15,7 +15,7 @@ namespace Microsoft.CodeAnalysis.FindSymbols
internal sealed partial class SyntaxTreeIndex : IObjectWritable
{
private const string PersistenceName = "<TreeInfoPersistence>";
private const string SerializationFormat = "4";
private const string SerializationFormat = "5";
/// <summary>
/// in memory cache will hold onto any info related to opened documents in primary branch or all documents in forked branch
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册