提交 31af2421 编写于 作者: C CyrusNajmabadi

Wrap code.

上级 2fe4a1f4
...@@ -109,8 +109,10 @@ public static Task<SyntaxTreeIdentifierInfo> GetIdentifierInfoAsync(Document doc ...@@ -109,8 +109,10 @@ public static Task<SyntaxTreeIdentifierInfo> GetIdentifierInfoAsync(Document doc
return GetInfoAsync(document, s_identifierSnapshotCache, SyntaxTreeIdentifierInfo.LoadAsync, tuple => tuple.Item1, cancellationToken); return GetInfoAsync(document, s_identifierSnapshotCache, SyntaxTreeIdentifierInfo.LoadAsync, tuple => tuple.Item1, cancellationToken);
} }
private static Func<Document, CancellationToken, Task<SyntaxTreeDeclarationInfo>> s_loadAsync = SyntaxTreeDeclarationInfo.LoadAsync; private static Func<Document, CancellationToken, Task<SyntaxTreeDeclarationInfo>> s_loadAsync
private static Func<ValueTuple<SyntaxTreeIdentifierInfo, SyntaxTreeContextInfo, SyntaxTreeDeclarationInfo>, SyntaxTreeDeclarationInfo> s_getThirdItem = tuple => tuple.Item3; = SyntaxTreeDeclarationInfo.LoadAsync;
private static Func<ValueTuple<SyntaxTreeIdentifierInfo, SyntaxTreeContextInfo, SyntaxTreeDeclarationInfo>, SyntaxTreeDeclarationInfo> s_getThirdItem
= tuple => tuple.Item3;
public static Task<SyntaxTreeDeclarationInfo> GetDeclarationInfoAsync( public static Task<SyntaxTreeDeclarationInfo> GetDeclarationInfoAsync(
Document document, CancellationToken cancellationToken) Document document, CancellationToken cancellationToken)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册