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

Unified Diff: pkg/analyzer_plugin/lib/protocol/protocol_generated.dart

Issue 2876023003: Allow the common spec types to be in a separate document (Closed)
Patch Set: Created 3 years, 7 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/analyzer_plugin/lib/protocol/protocol_generated.dart
diff --git a/pkg/analyzer_plugin/lib/protocol/protocol_generated.dart b/pkg/analyzer_plugin/lib/protocol/protocol_generated.dart
index 2e3f6e77fcd930bda974642d800935650052ec6f..8c114ce51abd08a1f1603fa0ccddb167c0faa475 100644
--- a/pkg/analyzer_plugin/lib/protocol/protocol_generated.dart
+++ b/pkg/analyzer_plugin/lib/protocol/protocol_generated.dart
@@ -5365,6 +5365,8 @@ class Element implements HasToJson {
* SETTER
* TOP_LEVEL_VARIABLE
* TYPE_PARAMETER
+ * UNIT_TEST_GROUP
+ * UNIT_TEST_TEST
* UNKNOWN
* }
*
@@ -5417,6 +5419,18 @@ class ElementKind implements Enum {
static const ElementKind TYPE_PARAMETER =
const ElementKind._("TYPE_PARAMETER");
+ /**
+ * Deprecated: support for tests was removed.
+ */
+ static const ElementKind UNIT_TEST_GROUP =
+ const ElementKind._("UNIT_TEST_GROUP");
+
+ /**
+ * Deprecated: support for tests was removed.
+ */
+ static const ElementKind UNIT_TEST_TEST =
+ const ElementKind._("UNIT_TEST_TEST");
+
static const ElementKind UNKNOWN = const ElementKind._("UNKNOWN");
/**
@@ -5443,6 +5457,8 @@ class ElementKind implements Enum {
SETTER,
TOP_LEVEL_VARIABLE,
TYPE_PARAMETER,
+ UNIT_TEST_GROUP,
+ UNIT_TEST_TEST,
UNKNOWN
];
@@ -5493,6 +5509,10 @@ class ElementKind implements Enum {
return TOP_LEVEL_VARIABLE;
case "TYPE_PARAMETER":
return TYPE_PARAMETER;
+ case "UNIT_TEST_GROUP":
+ return UNIT_TEST_GROUP;
+ case "UNIT_TEST_TEST":
+ return UNIT_TEST_TEST;
case "UNKNOWN":
return UNKNOWN;
}
« no previous file with comments | « pkg/analyzer_plugin/doc/api.html ('k') | pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698