Add some missing error codes to the master list

Change-Id: I97886d2adafe5bd0ae07fe251642054617bf279a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/205861
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
diff --git a/pkg/analyzer/lib/error/error.dart b/pkg/analyzer/lib/error/error.dart
index 67999e9..8c8eb94 100644
--- a/pkg/analyzer/lib/error/error.dart
+++ b/pkg/analyzer/lib/error/error.dart
@@ -844,9 +844,20 @@
   ParserErrorCode.WITH_BEFORE_EXTENDS,
   ParserErrorCode.WRONG_SEPARATOR_FOR_POSITIONAL_PARAMETER,
   ParserErrorCode.WRONG_TERMINATOR_FOR_PARAMETER_GROUP,
+  PubspecWarningCode.ASSET_DOES_NOT_EXIST,
+  PubspecWarningCode.ASSET_DIRECTORY_DOES_NOT_EXIST,
+  PubspecWarningCode.ASSET_FIELD_NOT_LIST,
+  PubspecWarningCode.ASSET_NOT_STRING,
+  PubspecWarningCode.DEPENDENCIES_FIELD_NOT_MAP,
+  PubspecWarningCode.DEPRECATED_FIELD,
+  PubspecWarningCode.FLUTTER_FIELD_NOT_MAP,
   PubspecWarningCode.INVALID_DEPENDENCY,
+  PubspecWarningCode.MISSING_NAME,
+  PubspecWarningCode.NAME_NOT_STRING,
   PubspecWarningCode.PATH_DOES_NOT_EXIST,
+  PubspecWarningCode.PATH_NOT_POSIX,
   PubspecWarningCode.PATH_PUBSPEC_DOES_NOT_EXIST,
+  PubspecWarningCode.UNNECESSARY_DEV_DEPENDENCY,
   ScannerErrorCode.EXPECTED_TOKEN,
   ScannerErrorCode.ILLEGAL_CHARACTER,
   ScannerErrorCode.MISSING_DIGIT,