Skip to content

Commit

Permalink
### What's done: updated test to new functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
nulls committed Mar 20, 2023
1 parent 74c6535 commit e877f73
Showing 1 changed file with 6 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,12 @@ val elem1 = firstArgumentDot()?.secondArgumentDot

val elem2 = firstArgumentDot?.secondArgumentDot()
?.thirdArgumentDot
?.fourthArgumentDot
?.fifthArgumentDot
?.sixthArgumentDot
?.fourthArgumentDot?.fifthArgumentDot?.sixthArgumentDot


val elem3 = firstArgumentDot?.secondArgumentDot?.thirdArgumentDot()
?.fourthArgumentDot
?.fifthArgumentDot
?.sixthArgumentDot
?.fifthArgumentDot?.sixthArgumentDot


val elem4 = firstArgumentDot?.secondArgumentDot?.thirdArgumentDot + firstArgumentDot?.secondArgumentDot?.thirdArgumentDot?.fourthArgumentDot
Expand All @@ -31,15 +28,12 @@ val elem5 = firstArgumentDot()!!.secondArgumentDot()!!


val elem6 = firstArgumentDot!!.secondArgumentDot!!.thirdArgumentDot()!!
.fourthArgumentDot!!
.fifthArgumentDot()!!
.sixthArgumentDot
.fourthArgumentDot!!.fifthArgumentDot()!!.sixthArgumentDot


val elem7 = firstArgumentDot!!.secondArgumentDot()!!
.thirdArgumentDot!!
.fourthArgumentDot()!!
.fifthArgumentDot!!
.fourthArgumentDot()!!.fifthArgumentDot!!
.sixthArgumentDot


Expand All @@ -55,15 +49,12 @@ val elem9 = firstArgumentDot().secondArgumentDot

val elem10 = firstArgumentDot.secondArgumentDot()
.thirdArgumentDot
.fourthArgumentDot
.fifthArgumentDot()
.sixthArgumentDot
.fourthArgumentDot.fifthArgumentDot().sixthArgumentDot


val elem11 = firstArgumentDot.secondArgumentDot.thirdArgumentDot()
.fourthArgumentDot
.fifthArgumentDot
.sixthArgumentDot
.fifthArgumentDot.sixthArgumentDot


val elem12 = firstArgumentDot.secondArgumentDot.thirdArgumentDot + firstArgumentDot.secondArgumentDot().thirdArgumentDot.fourthArgumentDot
Expand Down

0 comments on commit e877f73

Please sign in to comment.