We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a27240 commit da502f8Copy full SHA for da502f8
pkg/analysis_server/lib/src/services/correction/assist.dart
@@ -232,6 +232,9 @@ class DartAssistKind {
232
'dart.assist.surround.tryFinally', 29, "Surround with 'try-finally'");
233
static const SURROUND_WITH_WHILE = const AssistKind(
234
'dart.assist.surround.while', 24, "Surround with 'while'");
235
- static const USE_CURLY_BRACES =
236
- const AssistKind('USE_CURLY_BRACES', 30, "Use curly braces");
+ static const USE_CURLY_BRACES = const AssistKind(
+ 'USE_CURLY_BRACES', 30, "Use curly braces",
237
+ associatedErrorCodes: <String>[
238
+ 'curly_braces_in_flow_control_structures',
239
+ ]);
240
}
0 commit comments