@@ -38,6 +38,8 @@ class DocumentationValidator {
38
38
/// ony include docs that cannot be verified because of missing support in the
39
39
/// verifier.
40
40
static const List <String > unverifiedDocs = [
41
+ // Needs to be able to specify two expected diagnostics.
42
+ 'CompileTimeErrorCode.AMBIGUOUS_IMPORT' ,
41
43
// Produces two diagnostics when it should only produce one.
42
44
'CompileTimeErrorCode.BUILT_IN_IDENTIFIER_AS_TYPE' ,
43
45
// Produces two diagnostics when it should only produce one. We could get
@@ -46,17 +48,15 @@ class DocumentationValidator {
46
48
'CompileTimeErrorCode.IMPORT_INTERNAL_LIBRARY' ,
47
49
// Produces two diagnostics when it should only produce one.
48
50
'CompileTimeErrorCode.INVALID_URI' ,
51
+ // Produces two diagnostics when it should only produce one.
52
+ 'CompileTimeErrorCode.INVALID_USE_OF_NULL_VALUE' ,
49
53
// Need a way to make auxiliary files that (a) are not included in the
50
54
// generated docs or (b) can be made persistent for fixes.
51
55
'CompileTimeErrorCode.PART_OF_NON_PART' ,
56
+ // Produces the diagnostic HintCode.UNUSED_LOCAL_VARIABLE when it shouldn't.
57
+ 'CompileTimeErrorCode.UNDEFINED_IDENTIFIER_AWAIT' ,
52
58
// The code has been replaced but is not yet removed.
53
59
'HintCode.DEPRECATED_MEMBER_USE' ,
54
- // Needs to be able to specify two expected diagnostics.
55
- 'StaticWarningCode.AMBIGUOUS_IMPORT' ,
56
- // Produces two diagnostics when it should only produce one.
57
- 'StaticWarningCode.INVALID_USE_OF_NULL_VALUE' ,
58
- // Produces the diagnostic HintCode.UNUSED_LOCAL_VARIABLE when it shouldn't.
59
- 'StaticWarningCode.UNDEFINED_IDENTIFIER_AWAIT' ,
60
60
];
61
61
62
62
/// The prefix used on directive lines to specify the experiments that should
0 commit comments