nvim-treesitter/tests/indent/dart/multiple_arguments.dart
2023-04-13 02:31:49 -07:00

13 lines
273 B
Dart

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