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

Unified Diff: pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart

Issue 1409333002: DAS specification changes - spelling and ElementKind.FILE addition. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/plugin/protocol/generated_protocol.dart
diff --git a/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart b/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
index 4a07f0aebd37d557984c49a5a77aeebd177cb13b..8d4032ef0f840d647b83ceee867dd36cc68b76a4 100644
--- a/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
+++ b/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
@@ -8058,13 +8058,13 @@ class AnalysisOptions implements HasToJson {
}
/**
- * True if the client wants to enable spport for the proposed "less
+ * True if the client wants to enable support for the proposed "less
* restricted mixins" proposal (DEP 34).
*/
bool get enableSuperMixins => _enableSuperMixins;
/**
- * True if the client wants to enable spport for the proposed "less
+ * True if the client wants to enable support for the proposed "less
* restricted mixins" proposal (DEP 34).
*/
void set enableSuperMixins(bool value) {
@@ -9455,6 +9455,7 @@ class Element implements HasToJson {
* ENUM
* ENUM_CONSTANT
* FIELD
+ * FILE
* FUNCTION
* FUNCTION_TYPE_ALIAS
* GETTER
@@ -9489,6 +9490,8 @@ class ElementKind implements Enum {
static const FIELD = const ElementKind._("FIELD");
+ static const FILE = const ElementKind._("FILE");
+
static const FUNCTION = const ElementKind._("FUNCTION");
static const FUNCTION_TYPE_ALIAS = const ElementKind._("FUNCTION_TYPE_ALIAS");
@@ -9522,7 +9525,7 @@ class ElementKind implements Enum {
/**
* A list containing all of the enum values that are defined.
*/
- static const List<ElementKind> VALUES = const <ElementKind>[CLASS, CLASS_TYPE_ALIAS, COMPILATION_UNIT, CONSTRUCTOR, ENUM, ENUM_CONSTANT, FIELD, FUNCTION, FUNCTION_TYPE_ALIAS, GETTER, LABEL, LIBRARY, LOCAL_VARIABLE, METHOD, PARAMETER, PREFIX, SETTER, TOP_LEVEL_VARIABLE, TYPE_PARAMETER, UNIT_TEST_GROUP, UNIT_TEST_TEST, UNKNOWN];
+ static const List<ElementKind> VALUES = const <ElementKind>[CLASS, CLASS_TYPE_ALIAS, COMPILATION_UNIT, CONSTRUCTOR, ENUM, ENUM_CONSTANT, FIELD, FILE, FUNCTION, FUNCTION_TYPE_ALIAS, GETTER, LABEL, LIBRARY, LOCAL_VARIABLE, METHOD, PARAMETER, PREFIX, SETTER, TOP_LEVEL_VARIABLE, TYPE_PARAMETER, UNIT_TEST_GROUP, UNIT_TEST_TEST, UNKNOWN];
final String name;
@@ -9544,6 +9547,8 @@ class ElementKind implements Enum {
return ENUM_CONSTANT;
case "FIELD":
return FIELD;
+ case "FILE":
+ return FILE;
case "FUNCTION":
return FUNCTION;
case "FUNCTION_TYPE_ALIAS":
@@ -10804,13 +10809,13 @@ class HoverInformation implements HasToJson {
String _staticType;
/**
- * The offset of the range of characters that encompases the cursor position
+ * The offset of the range of characters that encompasses the cursor position
* and has the same hover information as the cursor position.
*/
int get offset => _offset;
/**
- * The offset of the range of characters that encompases the cursor position
+ * The offset of the range of characters that encompasses the cursor position
* and has the same hover information as the cursor position.
*/
void set offset(int value) {
@@ -10819,13 +10824,13 @@ class HoverInformation implements HasToJson {
}
/**
- * The length of the range of characters that encompases the cursor position
+ * The length of the range of characters that encompasses the cursor position
* and has the same hover information as the cursor position.
*/
int get length => _length;
/**
- * The length of the range of characters that encompases the cursor position
+ * The length of the range of characters that encompasses the cursor position
* and has the same hover information as the cursor position.
*/
void set length(int value) {
@@ -13750,7 +13755,7 @@ class RequestErrorCode implements Enum {
/**
* A request was received which the analysis server does not recognize, or
- * cannot handle in its current configuation.
+ * cannot handle in its current configuration.
*/
static const UNKNOWN_REQUEST = const RequestErrorCode._("UNKNOWN_REQUEST");
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/integration_test_methods.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698