We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09181aa commit dacf413Copy full SHA for dacf413
1 file changed
tools/analyzer_plugin/test/unit/util/prop_declaration/util.dart
@@ -42,7 +42,7 @@ Future<ResolvedUnitResult> resolveFileAndGeneratedPart(SharedAnalysisContext sha
42
.where((e) => e.severity != Severity.info && !e.errorCode.name.toLowerCase().startsWith('unused_'))
43
// FIXME(FED-2015) remove once these are properly ignored in generated code
44
.where((e) => e.errorCode.name.toLowerCase() != 'invalid_use_of_visible_for_overriding_member')
45
- // For some reason this is triggering for '$mustCallSuper'; ignore for now. FIXME look into what's going on here
+ // For some reason this is triggering for '$mustCallSuper'; ignore for now. TODO look into what's going on here
46
.where((e) => e.errorCode.name.toLowerCase() != 'invalid_annotation_target')
47
.toList();
48
0 commit comments