diff options
| author | Robert Brunhage <robertbrunhage@gmail.com> | 2023-04-11 21:05:00 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-04-13 02:31:49 -0700 |
| commit | ce3ea7aebef3bce752348b1e245279a6f5e79f90 (patch) | |
| tree | 1251a3cee8bd095ba4bf6638136c286d8cf157ee /tests/indent/dart | |
| parent | javascript: highlight more builtins (diff) | |
| download | nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar.gz nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar.bz2 nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar.lz nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar.xz nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.tar.zst nvim-treesitter-ce3ea7aebef3bce752348b1e245279a6f5e79f90.zip | |
Revert "fix(dart): function argument indents is inconsistent"
This reverts commit ac4020c70722337c326bf65b645b162ee6e1796b.
Diffstat (limited to 'tests/indent/dart')
| -rw-r--r-- | tests/indent/dart/multiple_arguments.dart | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/indent/dart/multiple_arguments.dart b/tests/indent/dart/multiple_arguments.dart deleted file mode 100644 index 63a4a0438..000000000 --- a/tests/indent/dart/multiple_arguments.dart +++ /dev/null @@ -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) { - }); -} |
