1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 16:00:05 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/dart/multiple_arguments.dart

14 lines
273 B
Dart
Raw Normal View History

// 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) {
});
}