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

Stroustrup formatting is broken for nested ifs with comments #605

Open
ArthaTi opened this issue Dec 5, 2024 · 0 comments
Open

Stroustrup formatting is broken for nested ifs with comments #605

ArthaTi opened this issue Dec 5, 2024 · 0 comments

Comments

@ArthaTi
Copy link

ArthaTi commented Dec 5, 2024

void main() {
    if (true) {
        if (true) { 
        }
        // This comment breaks formatting of the next line:
        else { 
        }
    }
    // Formatting below is OK
    else {
    }
}

Running dfmt --brace_style stroustrup on this file will outdent the first line with else on it. The issue does not occur on the other else, or if there isn't a comment before the else.

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

No branches or pull requests

1 participant