Describe the bug
On records with many fields, our Deconstruct can get long and results in Possible incorrect indentation
member this.Deconstruct(
outBar: outref<_>,
outAnother: outref<_>,
outMORE: outref<_>,
outAnother22: outref<_>)
=
outBar <- this.Bar
outAnother <- this.Another.Deconstruct()
outMORE <- this.MORE.Deconstruct()
outAnother22 <- this.Another22.Deconstruct()
Additional context
Fantomas formatting issue: fsprojects/fantomas#868
Once this is fixed we'll have to pipe it through to FsAst and Myriad.
Describe the bug
On records with many fields, our
Deconstructcan get long and results inPossible incorrect indentationAdditional context
Fantomas formatting issue: fsprojects/fantomas#868
Once this is fixed we'll have to pipe it through to FsAst and Myriad.