提交 3f00166b 编写于 作者: Š Šimon Koníček

Fix after merge

上级 990246ea
......@@ -78,7 +78,7 @@ internal static async Task<NameDeclarationInfo> GetDeclarationInfo(Document docu
semanticModel,
tupleElement => tupleElement.Type,
_ => default(SyntaxTokenList),
_ => ImmutableArray.Create(SymbolKind.Local), cancellationToken);
_ => ImmutableArray.Create(new SymbolKindOrTypeKind(SymbolKind.Local)), cancellationToken);
return result.Type != null;
}
......@@ -100,7 +100,7 @@ internal static async Task<NameDeclarationInfo> GetDeclarationInfo(Document docu
semanticModel,
GetNodeDenotingTheTypeOfTupleArgument,
_ => default(SyntaxTokenList),
_ => ImmutableArray.Create(SymbolKind.Local), cancellationToken);
_ => ImmutableArray.Create(new SymbolKindOrTypeKind(SymbolKind.Local)), cancellationToken);
return result.Type != null;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册