We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 956897f commit 09181aaCopy full SHA for 09181aa
1 file changed
tools/analyzer_plugin/test/unit/util/prop_declaration/util.dart
@@ -42,6 +42,8 @@ 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
46
+ .where((e) => e.errorCode.name.toLowerCase() != 'invalid_annotation_target')
47
.toList();
48
49
final libraryResult = await getResolvedUnit(libraryFullPath);
0 commit comments