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

Side by Side Diff: pkg/analysis_server/lib/src/generated_protocol.dart

Issue 677333002: Add ENUM and ENUM_CONSTANT to the specification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 part of protocol; 9 part of protocol;
10 /** 10 /**
(...skipping 6392 matching lines...) Expand 10 before | Expand all | Expand 10 after
6403 * enum { 6403 * enum {
6404 * ANNOTATION 6404 * ANNOTATION
6405 * BUILT_IN 6405 * BUILT_IN
6406 * CLASS 6406 * CLASS
6407 * COMMENT_BLOCK 6407 * COMMENT_BLOCK
6408 * COMMENT_DOCUMENTATION 6408 * COMMENT_DOCUMENTATION
6409 * COMMENT_END_OF_LINE 6409 * COMMENT_END_OF_LINE
6410 * CONSTRUCTOR 6410 * CONSTRUCTOR
6411 * DIRECTIVE 6411 * DIRECTIVE
6412 * DYNAMIC_TYPE 6412 * DYNAMIC_TYPE
6413 * ENUM
6414 * ENUM_CONSTANT
6413 * FIELD 6415 * FIELD
6414 * FIELD_STATIC 6416 * FIELD_STATIC
6415 * FUNCTION 6417 * FUNCTION
6416 * FUNCTION_DECLARATION 6418 * FUNCTION_DECLARATION
6417 * FUNCTION_TYPE_ALIAS 6419 * FUNCTION_TYPE_ALIAS
6418 * GETTER_DECLARATION 6420 * GETTER_DECLARATION
6419 * IDENTIFIER_DEFAULT 6421 * IDENTIFIER_DEFAULT
6420 * IMPORT_PREFIX 6422 * IMPORT_PREFIX
6421 * KEYWORD 6423 * KEYWORD
6422 * LABEL 6424 * LABEL
(...skipping 28 matching lines...) Expand all
6451 static const COMMENT_DOCUMENTATION = const HighlightRegionType._("COMMENT_DOCU MENTATION"); 6453 static const COMMENT_DOCUMENTATION = const HighlightRegionType._("COMMENT_DOCU MENTATION");
6452 6454
6453 static const COMMENT_END_OF_LINE = const HighlightRegionType._("COMMENT_END_OF _LINE"); 6455 static const COMMENT_END_OF_LINE = const HighlightRegionType._("COMMENT_END_OF _LINE");
6454 6456
6455 static const CONSTRUCTOR = const HighlightRegionType._("CONSTRUCTOR"); 6457 static const CONSTRUCTOR = const HighlightRegionType._("CONSTRUCTOR");
6456 6458
6457 static const DIRECTIVE = const HighlightRegionType._("DIRECTIVE"); 6459 static const DIRECTIVE = const HighlightRegionType._("DIRECTIVE");
6458 6460
6459 static const DYNAMIC_TYPE = const HighlightRegionType._("DYNAMIC_TYPE"); 6461 static const DYNAMIC_TYPE = const HighlightRegionType._("DYNAMIC_TYPE");
6460 6462
6463 static const ENUM = const HighlightRegionType._("ENUM");
6464
6465 static const ENUM_CONSTANT = const HighlightRegionType._("ENUM_CONSTANT");
6466
6461 static const FIELD = const HighlightRegionType._("FIELD"); 6467 static const FIELD = const HighlightRegionType._("FIELD");
6462 6468
6463 static const FIELD_STATIC = const HighlightRegionType._("FIELD_STATIC"); 6469 static const FIELD_STATIC = const HighlightRegionType._("FIELD_STATIC");
6464 6470
6465 static const FUNCTION = const HighlightRegionType._("FUNCTION"); 6471 static const FUNCTION = const HighlightRegionType._("FUNCTION");
6466 6472
6467 static const FUNCTION_DECLARATION = const HighlightRegionType._("FUNCTION_DECL ARATION"); 6473 static const FUNCTION_DECLARATION = const HighlightRegionType._("FUNCTION_DECL ARATION");
6468 6474
6469 static const FUNCTION_TYPE_ALIAS = const HighlightRegionType._("FUNCTION_TYPE_ ALIAS"); 6475 static const FUNCTION_TYPE_ALIAS = const HighlightRegionType._("FUNCTION_TYPE_ ALIAS");
6470 6476
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
6529 case "COMMENT_DOCUMENTATION": 6535 case "COMMENT_DOCUMENTATION":
6530 return COMMENT_DOCUMENTATION; 6536 return COMMENT_DOCUMENTATION;
6531 case "COMMENT_END_OF_LINE": 6537 case "COMMENT_END_OF_LINE":
6532 return COMMENT_END_OF_LINE; 6538 return COMMENT_END_OF_LINE;
6533 case "CONSTRUCTOR": 6539 case "CONSTRUCTOR":
6534 return CONSTRUCTOR; 6540 return CONSTRUCTOR;
6535 case "DIRECTIVE": 6541 case "DIRECTIVE":
6536 return DIRECTIVE; 6542 return DIRECTIVE;
6537 case "DYNAMIC_TYPE": 6543 case "DYNAMIC_TYPE":
6538 return DYNAMIC_TYPE; 6544 return DYNAMIC_TYPE;
6545 case "ENUM":
6546 return ENUM;
6547 case "ENUM_CONSTANT":
6548 return ENUM_CONSTANT;
6539 case "FIELD": 6549 case "FIELD":
6540 return FIELD; 6550 return FIELD;
6541 case "FIELD_STATIC": 6551 case "FIELD_STATIC":
6542 return FIELD_STATIC; 6552 return FIELD_STATIC;
6543 case "FUNCTION": 6553 case "FUNCTION":
6544 return FUNCTION; 6554 return FUNCTION;
6545 case "FUNCTION_DECLARATION": 6555 case "FUNCTION_DECLARATION":
6546 return FUNCTION_DECLARATION; 6556 return FUNCTION_DECLARATION;
6547 case "FUNCTION_TYPE_ALIAS": 6557 case "FUNCTION_TYPE_ALIAS":
6548 return FUNCTION_TYPE_ALIAS; 6558 return FUNCTION_TYPE_ALIAS;
(...skipping 3711 matching lines...) Expand 10 before | Expand all | Expand 10 after
10260 return false; 10270 return false;
10261 } 10271 }
10262 10272
10263 @override 10273 @override
10264 int get hashCode { 10274 int get hashCode {
10265 int hash = 0; 10275 int hash = 0;
10266 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); 10276 hash = _JenkinsSmiHash.combine(hash, newName.hashCode);
10267 return _JenkinsSmiHash.finish(hash); 10277 return _JenkinsSmiHash.finish(hash);
10268 } 10278 }
10269 } 10279 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698