We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb5efc commit 0d89120Copy full SHA for 0d89120
Driver/Linq/ExpressionPrettyPrinter.cs
@@ -283,7 +283,16 @@ protected override Expression VisitLambda(LambdaExpression lambda)
283
/// <returns>The NewExpression.</returns>
284
protected override NewExpression VisitNew(NewExpression nex)
285
{
286
- throw new NotImplementedException();
+ WriteHeader(nex);
287
+ using (new Indentation(this))
288
+ {
289
+ WriteLine("Arguments:");
290
+ foreach (var arg in nex.Arguments)
291
292
+ VisitIndented(arg);
293
+ }
294
295
+ return nex;
296
}
297
298
/// <summary>
0 commit comments