Open domn1995 opened 5 months ago
Similar to #1271, I'm running into this issue:
Input:
void Fn() { return x switch { (true, true) => foobar.MethodCall1().MethodCall2().MethodCall3(), // ... }; }
Output:
void Fn() { return x switch { (true, true) => foobar .MethodCall1() .MethodCall2() .MethodCall3(), // ... }; }
Expected:
void Fn() { return x switch { (true, true) => foobar.MethodCall1() .MethodCall2() .MethodCall3(), // ... }; }
Similar to #1271, I'm running into this issue:
Input:
Output:
Expected: