Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add line when await precedes query expression #741

Merged
merged 2 commits into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
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
Expand Up @@ -63,5 +63,11 @@ class ClassName
Country________________________ = g.Key,
CustCount____________________________ = g.Count()
};

var asyncQuery = await
from c in customers
from u in users
from res in HandleAsync(c, u)
select res;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ internal static class AwaitExpression
{
public static Doc Print(AwaitExpressionSyntax node, FormattingContext context)
{
var precedesQueryExpression = node.Expression is QueryExpressionSyntax;

return Doc.Concat(
Token.PrintWithSuffix(node.AwaitKeyword, " ", context),
Node.Print(node.Expression, context)
precedesQueryExpression
? Doc.Indent(Doc.Line, Node.Print(node.Expression, context))
: Node.Print(node.Expression, context)
);
}
}