Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: pkg/analysis_server/lib/src/generated_protocol.dart

Issue 560103002: Fix exception in error processing; implement mapUri (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/generated_protocol.dart
diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
index ae83b1cecb9ef6719d31c5007034f3e3b6528592..f18e9bee7a33eda90f589e3daea9db20f09e1ae7 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -4618,8 +4618,10 @@ class AnalysisErrorSeverity {
* AnalysisErrorType
*
* enum {
+ * ANGULAR
* COMPILE_TIME_ERROR
* HINT
+ * POLYMER
* STATIC_TYPE_WARNING
* STATIC_WARNING
* SYNTACTIC_ERROR
@@ -4627,10 +4629,14 @@ class AnalysisErrorSeverity {
* }
*/
class AnalysisErrorType {
+ static const ANGULAR = const AnalysisErrorType._("ANGULAR");
+
static const COMPILE_TIME_ERROR = const AnalysisErrorType._("COMPILE_TIME_ERROR");
static const HINT = const AnalysisErrorType._("HINT");
+ static const POLYMER = const AnalysisErrorType._("POLYMER");
+
static const STATIC_TYPE_WARNING = const AnalysisErrorType._("STATIC_TYPE_WARNING");
static const STATIC_WARNING = const AnalysisErrorType._("STATIC_WARNING");
@@ -4645,10 +4651,14 @@ class AnalysisErrorType {
factory AnalysisErrorType(String name) {
switch (name) {
+ case "ANGULAR":
+ return ANGULAR;
case "COMPILE_TIME_ERROR":
return COMPILE_TIME_ERROR;
case "HINT":
return HINT;
+ case "POLYMER":
+ return POLYMER;
case "STATIC_TYPE_WARNING":
return STATIC_TYPE_WARNING;
case "STATIC_WARNING":
« no previous file with comments | « pkg/analysis_server/lib/src/domain_execution.dart ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698