@@ -201,8 +201,7 @@ class TestClass
201201 ) ?? someOtherValue;
202202
203203 var x =
204- someValue
205- .Property
204+ someValue.Property
206205 .CallLongMethod_____________________________________()
207206 .CallMethod(
208207 someLongValue__________________________________________,
@@ -274,8 +273,7 @@ class TestClass
274273 someLongValue__________________________________________,
275274 someLongValue__________________________________________
276275 )
277- )
278- .SomeProperty
276+ ).SomeProperty
279277 .CallMethod() ?? someOtherValue;
280278
281279 var x =
@@ -284,8 +282,7 @@ class TestClass
284282 someLongValue__________________________________________,
285283 someLongValue__________________________________________
286284 )
287- )
288- ?.SomeProperty
285+ )?.SomeProperty
289286 .CallMethod() ?? someOtherValue;
290287
291288 var x =
@@ -294,8 +291,7 @@ class TestClass
294291 someLongValue__________________________________________,
295292 someLongValue__________________________________________
296293 )
297- )
298- ?.SomeProperty
294+ )?.SomeProperty
299295 ?.CallMethod() ?? someOtherValue;
300296
301297 var x =
@@ -304,8 +300,7 @@ class TestClass
304300 someLongValue__________________________________________,
305301 someLongValue__________________________________________
306302 )
307- )
308- .SomeProperty
303+ ).SomeProperty
309304 .CallMethod()
310305 .CallMethod()
311306 ?? someOtherValue;
@@ -316,8 +311,7 @@ class TestClass
316311 someLongValue__________________________________________,
317312 someLongValue__________________________________________
318313 )
319- )
320- ?.SomeProperty
314+ )?.SomeProperty
321315 .CallMethod()
322316 .CallMethod()
323317 ?? someOtherValue;
@@ -355,22 +349,19 @@ class TestClass
355349 ) ?? someOtherValue;
356350
357351 var x =
358- someValue
359- .Property
352+ someValue.Property
360353 .CallLongMethod_____________________________________()
361354 .CallMethod__________()
362355 ?? throw new Exception();
363356
364357 var x =
365- someValue
366- .Property
358+ someValue.Property
367359 .CallLongMethod_____________________________________()
368360 .CallMethod__________(someParameter)
369361 ?? throw new Exception();
370362
371363 var x =
372- someValue
373- .Property
364+ someValue.Property
374365 .CallLongMethod_____________________________________()
375366 .CallLongMethod___________________________________________________()
376367 ?? throw new Exception();
0 commit comments