We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Input file
class Main { function foo() { cmd = [ for (a in [StringTools.replace(cmd, "/", "\\")].concat(args)) StringTools.quoteWinArg(a, true) ].join(" "); } }
Broken output
class Main { function foo() { cmd = [ for (a in [StringTools.replace(cmd, "/", "\\")].concat(args)) StringTools.quoteWinArg(a, true)].join(" "); } }
If the for loop has braces, it wraps nicely, but it shouldn't depend on that:
for
class Main { function foo() { cmd = [ for (a in [StringTools.replace(cmd, "/", "\\")].concat(args)) { StringTools.quoteWinArg(a, true) } ].join(" "); } }
The text was updated successfully, but these errors were encountered:
fixed array comprehension wrapping, fixes HaxeCheckstyle#357, fixes H…
3ef6883
…axeCheckstyle#366
f57a8d1
No branches or pull requests
Input file
Broken output
If the
for
loop has braces, it wraps nicely, but it shouldn't depend on that:The text was updated successfully, but these errors were encountered: