Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indent mistake with nested struct lit #1019

Closed
nrc opened this issue May 30, 2016 · 6 comments
Closed

Indent mistake with nested struct lit #1019

nrc opened this issue May 30, 2016 · 6 comments

Comments

@nrc
Copy link
Member

nrc commented May 30, 2016

https://github.com/rust-lang/rust/pull/33939/files#diff-3d823311f2b08736340d87893d91e770R471

+                Ok((autoderef,
+                    ty::MethodCallee {
+                    def_id: this.read_struct_field("def_id", 1, |this| Ok(this.read_def_id(dcx)))
+                                .unwrap(),
+                    ty: this.read_struct_field("ty", 2, |this| Ok(this.read_ty(dcx)))
+                            .unwrap(),
+                    substs: this.read_struct_field("substs", 3, |this| {
+                                    Ok(dcx.tcx.mk_substs(this.read_substs(dcx)))
+                                })
+                                .unwrap(),
+                }))
@marcusklaas
Copy link
Contributor

Ok, so what's happening here is that multi-line struct expressions are indented using block formatting. This makes sense in situations such as

let x = SomeStruct {
    a: foo,
    b: bar(),
};

But it doesn't really look great in an otherwise visually indented context (function args). This is a common problem in rustfmt.

@nrc
Copy link
Member Author

nrc commented Jun 3, 2016

Yeah, I was also playing with this, made some things better and some things worse. Examples of how I'd like this to work:

    let foasdfasfso = Sfgdsfgdsfgdfsgdsf {
        dfasd: dsfadsfasdfsdf,
        dsfasd: sdfgdfg,
    };

    let dsfasdfddddddddddddddddddddddddddddddddddddd = dsfsdffffffff(dddddddddddd,
                                                                     dsfsfsdfsfdddddd);

    Okdfgsdfgsdgsdfdfgsd((autoderef,
                          ty::MethodCallee {
                              def_id: this.unwrap(),
                              ty: this.unwrap(),
                              substs: this.read_struct_field("substs", 3, |this| {
                                              Ok(dcx.tcx.mk_substs(this.read_substs(dcx)))
                                          })
                                          .unwrap(),
                          }))

The problem is subtle, but I think it comes down to something like the Indent should track alignments for visual and block formatted items separately.

@marcusklaas
Copy link
Contributor

marcusklaas commented Jun 3, 2016

That may not be necessary. Recall that we already have two levels of indent: one passed explicitly to the rewrite function, and one in the RewriteContext.
We could create a new RewriteContext whose Indent is equal to the visual indent of the function argument.

It just gets a bit tricky when you have function arguments which are closures, which could use either one of the indents depending on its length...

@marcusklaas
Copy link
Contributor

100% agreed on the ideal formatting btw

@marcusklaas
Copy link
Contributor

Just played around with this a little. Turns around we already do visual indentation for struct function arguments. In the example we're looking at a tuple function argument though... Not sure how to fix this..

@nrc nrc removed this from the 1.0 milestone Jun 15, 2017
@topecongiro
Copy link
Contributor

Closing since this is fixed on the current master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants