Revert "fix(dart): function argument indents is inconsistent"

This reverts commit ac4020c707.
This commit is contained in:
Robert Brunhage 2023-04-11 21:05:00 +02:00 committed by Stephan Seitz
parent 18f9e1a47f
commit ce3ea7aebe
3 changed files with 1 additions and 17 deletions

View file

@ -1,6 +1,7 @@
[
(class_body)
(function_body)
(function_expression_body)
(declaration (initializers))
(switch_block)
(if_statement)
@ -27,7 +28,5 @@
; this one is for dedenting the else block
(if_statement (block) @indent.branch)
; Issue #4637
(function_expression_body (block) @indent.branch)
(comment) @indent.ignore

View file

@ -1,13 +0,0 @@
// Example method that causes an issue with indentation on usage
void someMethod(
void onSuccess(),
void onError(Exception ex, StackTrace stackTrace),
) {
try {} catch (_, __) {}
}
void main() {
someMethod(() {
}, (Exception ex, StackTrace stackTrace) {
});
}

View file

@ -18,6 +18,4 @@ end)
describe("new line:", function()
run:new_line("class.dart", { on_line = 2, text = "var x;", indent = 0 })
run:new_line("try.dart", { on_line = 2, text = "var x;", indent = 4 })
run:new_line("multiple_arguments.dart", { on_line = 10, text = "var x;", indent = 4 })
run:new_line("multiple_arguments.dart", { on_line = 11, text = "var x;", indent = 4 })
end)