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

Side by Side Diff: pkg/analysis_server/lib/protocol/protocol_generated.dart

Issue 2972833002: Initial implementation of copy/paste support (Closed)
Patch Set: Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 import 'dart:convert' hide JsonDecoder; 9 import 'dart:convert' hide JsonDecoder;
10 10
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 hash = JenkinsSmiHash.combine(hash, length.hashCode); 1037 hash = JenkinsSmiHash.combine(hash, length.hashCode);
1038 return JenkinsSmiHash.finish(hash); 1038 return JenkinsSmiHash.finish(hash);
1039 } 1039 }
1040 } 1040 }
1041 1041
1042 /** 1042 /**
1043 * analysis.getImportedElements result 1043 * analysis.getImportedElements result
1044 * 1044 *
1045 * { 1045 * {
1046 * "elements": List<ImportedElements> 1046 * "elements": List<ImportedElements>
1047 * "complete": bool
1048 * } 1047 * }
1049 * 1048 *
1050 * Clients may not extend, implement or mix-in this class. 1049 * Clients may not extend, implement or mix-in this class.
1051 */ 1050 */
1052 class AnalysisGetImportedElementsResult implements ResponseResult { 1051 class AnalysisGetImportedElementsResult implements ResponseResult {
1053 List<ImportedElements> _elements; 1052 List<ImportedElements> _elements;
1054 1053
1055 bool _complete;
1056
1057 /** 1054 /**
1058 * The information about the elements that are referenced in the specified 1055 * The information about the elements that are referenced in the specified
1059 * region of the specified file that come from imported libraries. 1056 * region of the specified file that come from imported libraries.
1060 */ 1057 */
1061 List<ImportedElements> get elements => _elements; 1058 List<ImportedElements> get elements => _elements;
1062 1059
1063 /** 1060 /**
1064 * The information about the elements that are referenced in the specified 1061 * The information about the elements that are referenced in the specified
1065 * region of the specified file that come from imported libraries. 1062 * region of the specified file that come from imported libraries.
1066 */ 1063 */
1067 void set elements(List<ImportedElements> value) { 1064 void set elements(List<ImportedElements> value) {
1068 assert(value != null); 1065 assert(value != null);
1069 this._elements = value; 1066 this._elements = value;
1070 } 1067 }
1071 1068
1072 /** 1069 AnalysisGetImportedElementsResult(List<ImportedElements> elements) {
1073 * True if all of the elements that are referenced in the specified region
1074 * are included in the list of elements. The list of elements will be
1075 * incomplete if there is an error in the specified region that prevents an
1076 * identifier from being resolved to a single element.
1077 */
1078 bool get complete => _complete;
1079
1080 /**
1081 * True if all of the elements that are referenced in the specified region
1082 * are included in the list of elements. The list of elements will be
1083 * incomplete if there is an error in the specified region that prevents an
1084 * identifier from being resolved to a single element.
1085 */
1086 void set complete(bool value) {
1087 assert(value != null);
1088 this._complete = value;
1089 }
1090
1091 AnalysisGetImportedElementsResult(
1092 List<ImportedElements> elements, bool complete) {
1093 this.elements = elements; 1070 this.elements = elements;
1094 this.complete = complete;
1095 } 1071 }
1096 1072
1097 factory AnalysisGetImportedElementsResult.fromJson( 1073 factory AnalysisGetImportedElementsResult.fromJson(
1098 JsonDecoder jsonDecoder, String jsonPath, Object json) { 1074 JsonDecoder jsonDecoder, String jsonPath, Object json) {
1099 if (json == null) { 1075 if (json == null) {
1100 json = {}; 1076 json = {};
1101 } 1077 }
1102 if (json is Map) { 1078 if (json is Map) {
1103 List<ImportedElements> elements; 1079 List<ImportedElements> elements;
1104 if (json.containsKey("elements")) { 1080 if (json.containsKey("elements")) {
1105 elements = jsonDecoder.decodeList( 1081 elements = jsonDecoder.decodeList(
1106 jsonPath + ".elements", 1082 jsonPath + ".elements",
1107 json["elements"], 1083 json["elements"],
1108 (String jsonPath, Object json) => 1084 (String jsonPath, Object json) =>
1109 new ImportedElements.fromJson(jsonDecoder, jsonPath, json)); 1085 new ImportedElements.fromJson(jsonDecoder, jsonPath, json));
1110 } else { 1086 } else {
1111 throw jsonDecoder.mismatch(jsonPath, "elements"); 1087 throw jsonDecoder.mismatch(jsonPath, "elements");
1112 } 1088 }
1113 bool complete; 1089 return new AnalysisGetImportedElementsResult(elements);
1114 if (json.containsKey("complete")) {
1115 complete =
1116 jsonDecoder.decodeBool(jsonPath + ".complete", json["complete"]);
1117 } else {
1118 throw jsonDecoder.mismatch(jsonPath, "complete");
1119 }
1120 return new AnalysisGetImportedElementsResult(elements, complete);
1121 } else { 1090 } else {
1122 throw jsonDecoder.mismatch( 1091 throw jsonDecoder.mismatch(
1123 jsonPath, "analysis.getImportedElements result", json); 1092 jsonPath, "analysis.getImportedElements result", json);
1124 } 1093 }
1125 } 1094 }
1126 1095
1127 factory AnalysisGetImportedElementsResult.fromResponse(Response response) { 1096 factory AnalysisGetImportedElementsResult.fromResponse(Response response) {
1128 return new AnalysisGetImportedElementsResult.fromJson( 1097 return new AnalysisGetImportedElementsResult.fromJson(
1129 new ResponseDecoder(REQUEST_ID_REFACTORING_KINDS.remove(response.id)), 1098 new ResponseDecoder(REQUEST_ID_REFACTORING_KINDS.remove(response.id)),
1130 "result", 1099 "result",
1131 response.result); 1100 response.result);
1132 } 1101 }
1133 1102
1134 @override 1103 @override
1135 Map<String, dynamic> toJson() { 1104 Map<String, dynamic> toJson() {
1136 Map<String, dynamic> result = {}; 1105 Map<String, dynamic> result = {};
1137 result["elements"] = 1106 result["elements"] =
1138 elements.map((ImportedElements value) => value.toJson()).toList(); 1107 elements.map((ImportedElements value) => value.toJson()).toList();
1139 result["complete"] = complete;
1140 return result; 1108 return result;
1141 } 1109 }
1142 1110
1143 @override 1111 @override
1144 Response toResponse(String id) { 1112 Response toResponse(String id) {
1145 return new Response(id, result: toJson()); 1113 return new Response(id, result: toJson());
1146 } 1114 }
1147 1115
1148 @override 1116 @override
1149 String toString() => JSON.encode(toJson()); 1117 String toString() => JSON.encode(toJson());
1150 1118
1151 @override 1119 @override
1152 bool operator ==(other) { 1120 bool operator ==(other) {
1153 if (other is AnalysisGetImportedElementsResult) { 1121 if (other is AnalysisGetImportedElementsResult) {
1154 return listEqual(elements, other.elements, 1122 return listEqual(elements, other.elements,
1155 (ImportedElements a, ImportedElements b) => a == b) && 1123 (ImportedElements a, ImportedElements b) => a == b);
1156 complete == other.complete;
1157 } 1124 }
1158 return false; 1125 return false;
1159 } 1126 }
1160 1127
1161 @override 1128 @override
1162 int get hashCode { 1129 int get hashCode {
1163 int hash = 0; 1130 int hash = 0;
1164 hash = JenkinsSmiHash.combine(hash, elements.hashCode); 1131 hash = JenkinsSmiHash.combine(hash, elements.hashCode);
1165 hash = JenkinsSmiHash.combine(hash, complete.hashCode);
1166 return JenkinsSmiHash.finish(hash); 1132 return JenkinsSmiHash.finish(hash);
1167 } 1133 }
1168 } 1134 }
1169 1135
1170 /** 1136 /**
1171 * analysis.getLibraryDependencies params 1137 * analysis.getLibraryDependencies params
1172 * 1138 *
1173 * Clients may not extend, implement or mix-in this class. 1139 * Clients may not extend, implement or mix-in this class.
1174 */ 1140 */
1175 class AnalysisGetLibraryDependenciesParams implements RequestParams { 1141 class AnalysisGetLibraryDependenciesParams implements RequestParams {
(...skipping 6534 matching lines...) Expand 10 before | Expand all | Expand 10 after
7710 hash = JenkinsSmiHash.combine(hash, elements.hashCode); 7676 hash = JenkinsSmiHash.combine(hash, elements.hashCode);
7711 return JenkinsSmiHash.finish(hash); 7677 return JenkinsSmiHash.finish(hash);
7712 } 7678 }
7713 } 7679 }
7714 7680
7715 /** 7681 /**
7716 * edit.importElements result 7682 * edit.importElements result
7717 * 7683 *
7718 * { 7684 * {
7719 * "edits": List<SourceEdit> 7685 * "edits": List<SourceEdit>
7720 * "complete": bool
7721 * } 7686 * }
7722 * 7687 *
7723 * Clients may not extend, implement or mix-in this class. 7688 * Clients may not extend, implement or mix-in this class.
7724 */ 7689 */
7725 class EditImportElementsResult implements ResponseResult { 7690 class EditImportElementsResult implements ResponseResult {
7726 List<SourceEdit> _edits; 7691 List<SourceEdit> _edits;
7727 7692
7728 bool _complete;
7729
7730 /** 7693 /**
7731 * The edit(s) to be applied in order to make the specified elements 7694 * The edit(s) to be applied in order to make the specified elements
7732 * accessible. 7695 * accessible.
7733 */ 7696 */
7734 List<SourceEdit> get edits => _edits; 7697 List<SourceEdit> get edits => _edits;
7735 7698
7736 /** 7699 /**
7737 * The edit(s) to be applied in order to make the specified elements 7700 * The edit(s) to be applied in order to make the specified elements
7738 * accessible. 7701 * accessible.
7739 */ 7702 */
7740 void set edits(List<SourceEdit> value) { 7703 void set edits(List<SourceEdit> value) {
7741 assert(value != null); 7704 assert(value != null);
7742 this._edits = value; 7705 this._edits = value;
7743 } 7706 }
7744 7707
7745 /** 7708 EditImportElementsResult(List<SourceEdit> edits) {
7746 * True if all of the elements that are to be made accessible would be
7747 * accessible if the edits were applied. The edits will not be complete, for
7748 * example, if one of the libraries cannot be referenced in the target
7749 * library or if one of the element names is already imported from a
7750 * different library.
7751 */
7752 bool get complete => _complete;
7753
7754 /**
7755 * True if all of the elements that are to be made accessible would be
7756 * accessible if the edits were applied. The edits will not be complete, for
7757 * example, if one of the libraries cannot be referenced in the target
7758 * library or if one of the element names is already imported from a
7759 * different library.
7760 */
7761 void set complete(bool value) {
7762 assert(value != null);
7763 this._complete = value;
7764 }
7765
7766 EditImportElementsResult(List<SourceEdit> edits, bool complete) {
7767 this.edits = edits; 7709 this.edits = edits;
7768 this.complete = complete;
7769 } 7710 }
7770 7711
7771 factory EditImportElementsResult.fromJson( 7712 factory EditImportElementsResult.fromJson(
7772 JsonDecoder jsonDecoder, String jsonPath, Object json) { 7713 JsonDecoder jsonDecoder, String jsonPath, Object json) {
7773 if (json == null) { 7714 if (json == null) {
7774 json = {}; 7715 json = {};
7775 } 7716 }
7776 if (json is Map) { 7717 if (json is Map) {
7777 List<SourceEdit> edits; 7718 List<SourceEdit> edits;
7778 if (json.containsKey("edits")) { 7719 if (json.containsKey("edits")) {
7779 edits = jsonDecoder.decodeList( 7720 edits = jsonDecoder.decodeList(
7780 jsonPath + ".edits", 7721 jsonPath + ".edits",
7781 json["edits"], 7722 json["edits"],
7782 (String jsonPath, Object json) => 7723 (String jsonPath, Object json) =>
7783 new SourceEdit.fromJson(jsonDecoder, jsonPath, json)); 7724 new SourceEdit.fromJson(jsonDecoder, jsonPath, json));
7784 } else { 7725 } else {
7785 throw jsonDecoder.mismatch(jsonPath, "edits"); 7726 throw jsonDecoder.mismatch(jsonPath, "edits");
7786 } 7727 }
7787 bool complete; 7728 return new EditImportElementsResult(edits);
7788 if (json.containsKey("complete")) {
7789 complete =
7790 jsonDecoder.decodeBool(jsonPath + ".complete", json["complete"]);
7791 } else {
7792 throw jsonDecoder.mismatch(jsonPath, "complete");
7793 }
7794 return new EditImportElementsResult(edits, complete);
7795 } else { 7729 } else {
7796 throw jsonDecoder.mismatch(jsonPath, "edit.importElements result", json); 7730 throw jsonDecoder.mismatch(jsonPath, "edit.importElements result", json);
7797 } 7731 }
7798 } 7732 }
7799 7733
7800 factory EditImportElementsResult.fromResponse(Response response) { 7734 factory EditImportElementsResult.fromResponse(Response response) {
7801 return new EditImportElementsResult.fromJson( 7735 return new EditImportElementsResult.fromJson(
7802 new ResponseDecoder(REQUEST_ID_REFACTORING_KINDS.remove(response.id)), 7736 new ResponseDecoder(REQUEST_ID_REFACTORING_KINDS.remove(response.id)),
7803 "result", 7737 "result",
7804 response.result); 7738 response.result);
7805 } 7739 }
7806 7740
7807 @override 7741 @override
7808 Map<String, dynamic> toJson() { 7742 Map<String, dynamic> toJson() {
7809 Map<String, dynamic> result = {}; 7743 Map<String, dynamic> result = {};
7810 result["edits"] = edits.map((SourceEdit value) => value.toJson()).toList(); 7744 result["edits"] = edits.map((SourceEdit value) => value.toJson()).toList();
7811 result["complete"] = complete;
7812 return result; 7745 return result;
7813 } 7746 }
7814 7747
7815 @override 7748 @override
7816 Response toResponse(String id) { 7749 Response toResponse(String id) {
7817 return new Response(id, result: toJson()); 7750 return new Response(id, result: toJson());
7818 } 7751 }
7819 7752
7820 @override 7753 @override
7821 String toString() => JSON.encode(toJson()); 7754 String toString() => JSON.encode(toJson());
7822 7755
7823 @override 7756 @override
7824 bool operator ==(other) { 7757 bool operator ==(other) {
7825 if (other is EditImportElementsResult) { 7758 if (other is EditImportElementsResult) {
7826 return listEqual( 7759 return listEqual(
7827 edits, other.edits, (SourceEdit a, SourceEdit b) => a == b) && 7760 edits, other.edits, (SourceEdit a, SourceEdit b) => a == b);
7828 complete == other.complete;
7829 } 7761 }
7830 return false; 7762 return false;
7831 } 7763 }
7832 7764
7833 @override 7765 @override
7834 int get hashCode { 7766 int get hashCode {
7835 int hash = 0; 7767 int hash = 0;
7836 hash = JenkinsSmiHash.combine(hash, edits.hashCode); 7768 hash = JenkinsSmiHash.combine(hash, edits.hashCode);
7837 hash = JenkinsSmiHash.combine(hash, complete.hashCode);
7838 return JenkinsSmiHash.finish(hash); 7769 return JenkinsSmiHash.finish(hash);
7839 } 7770 }
7840 } 7771 }
7841 7772
7842 /** 7773 /**
7843 * edit.isPostfixCompletionApplicable params 7774 * edit.isPostfixCompletionApplicable params
7844 * 7775 *
7845 * { 7776 * {
7846 * "file": FilePath 7777 * "file": FilePath
7847 * "key": String 7778 * "key": String
(...skipping 4783 matching lines...) Expand 10 before | Expand all | Expand 10 after
12631 * enum { 12562 * enum {
12632 * CONTENT_MODIFIED 12563 * CONTENT_MODIFIED
12633 * DEBUG_PORT_COULD_NOT_BE_OPENED 12564 * DEBUG_PORT_COULD_NOT_BE_OPENED
12634 * FILE_NOT_ANALYZED 12565 * FILE_NOT_ANALYZED
12635 * FORMAT_INVALID_FILE 12566 * FORMAT_INVALID_FILE
12636 * FORMAT_WITH_ERRORS 12567 * FORMAT_WITH_ERRORS
12637 * GET_ERRORS_INVALID_FILE 12568 * GET_ERRORS_INVALID_FILE
12638 * GET_IMPORTED_ELEMENTS_INVALID_FILE 12569 * GET_IMPORTED_ELEMENTS_INVALID_FILE
12639 * GET_NAVIGATION_INVALID_FILE 12570 * GET_NAVIGATION_INVALID_FILE
12640 * GET_REACHABLE_SOURCES_INVALID_FILE 12571 * GET_REACHABLE_SOURCES_INVALID_FILE
12572 * IMPORT_ELEMENTS_INVALID_FILE
12641 * INVALID_ANALYSIS_ROOT 12573 * INVALID_ANALYSIS_ROOT
12642 * INVALID_EXECUTION_CONTEXT 12574 * INVALID_EXECUTION_CONTEXT
12643 * INVALID_FILE_PATH_FORMAT 12575 * INVALID_FILE_PATH_FORMAT
12644 * INVALID_OVERLAY_CHANGE 12576 * INVALID_OVERLAY_CHANGE
12645 * INVALID_PARAMETER 12577 * INVALID_PARAMETER
12646 * INVALID_REQUEST 12578 * INVALID_REQUEST
12647 * ORGANIZE_DIRECTIVES_ERROR 12579 * ORGANIZE_DIRECTIVES_ERROR
12648 * REFACTORING_REQUEST_CANCELLED 12580 * REFACTORING_REQUEST_CANCELLED
12649 * SERVER_ALREADY_STARTED 12581 * SERVER_ALREADY_STARTED
12650 * SERVER_ERROR 12582 * SERVER_ERROR
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
12715 const RequestErrorCode._("GET_NAVIGATION_INVALID_FILE"); 12647 const RequestErrorCode._("GET_NAVIGATION_INVALID_FILE");
12716 12648
12717 /** 12649 /**
12718 * An "analysis.getReachableSources" request specified a FilePath which does 12650 * An "analysis.getReachableSources" request specified a FilePath which does
12719 * not match a file currently subject to analysis. 12651 * not match a file currently subject to analysis.
12720 */ 12652 */
12721 static const RequestErrorCode GET_REACHABLE_SOURCES_INVALID_FILE = 12653 static const RequestErrorCode GET_REACHABLE_SOURCES_INVALID_FILE =
12722 const RequestErrorCode._("GET_REACHABLE_SOURCES_INVALID_FILE"); 12654 const RequestErrorCode._("GET_REACHABLE_SOURCES_INVALID_FILE");
12723 12655
12724 /** 12656 /**
12657 * An "edit.importElements" request specified a FilePath that does not match
12658 * a file currently subject to analysis.
12659 */
12660 static const RequestErrorCode IMPORT_ELEMENTS_INVALID_FILE =
12661 const RequestErrorCode._("IMPORT_ELEMENTS_INVALID_FILE");
12662
12663 /**
12725 * A path passed as an argument to a request (such as analysis.reanalyze) is 12664 * A path passed as an argument to a request (such as analysis.reanalyze) is
12726 * required to be an analysis root, but isn't. 12665 * required to be an analysis root, but isn't.
12727 */ 12666 */
12728 static const RequestErrorCode INVALID_ANALYSIS_ROOT = 12667 static const RequestErrorCode INVALID_ANALYSIS_ROOT =
12729 const RequestErrorCode._("INVALID_ANALYSIS_ROOT"); 12668 const RequestErrorCode._("INVALID_ANALYSIS_ROOT");
12730 12669
12731 /** 12670 /**
12732 * The context root used to create an execution context does not exist. 12671 * The context root used to create an execution context does not exist.
12733 */ 12672 */
12734 static const RequestErrorCode INVALID_EXECUTION_CONTEXT = 12673 static const RequestErrorCode INVALID_EXECUTION_CONTEXT =
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
12846 static const List<RequestErrorCode> VALUES = const <RequestErrorCode>[ 12785 static const List<RequestErrorCode> VALUES = const <RequestErrorCode>[
12847 CONTENT_MODIFIED, 12786 CONTENT_MODIFIED,
12848 DEBUG_PORT_COULD_NOT_BE_OPENED, 12787 DEBUG_PORT_COULD_NOT_BE_OPENED,
12849 FILE_NOT_ANALYZED, 12788 FILE_NOT_ANALYZED,
12850 FORMAT_INVALID_FILE, 12789 FORMAT_INVALID_FILE,
12851 FORMAT_WITH_ERRORS, 12790 FORMAT_WITH_ERRORS,
12852 GET_ERRORS_INVALID_FILE, 12791 GET_ERRORS_INVALID_FILE,
12853 GET_IMPORTED_ELEMENTS_INVALID_FILE, 12792 GET_IMPORTED_ELEMENTS_INVALID_FILE,
12854 GET_NAVIGATION_INVALID_FILE, 12793 GET_NAVIGATION_INVALID_FILE,
12855 GET_REACHABLE_SOURCES_INVALID_FILE, 12794 GET_REACHABLE_SOURCES_INVALID_FILE,
12795 IMPORT_ELEMENTS_INVALID_FILE,
12856 INVALID_ANALYSIS_ROOT, 12796 INVALID_ANALYSIS_ROOT,
12857 INVALID_EXECUTION_CONTEXT, 12797 INVALID_EXECUTION_CONTEXT,
12858 INVALID_FILE_PATH_FORMAT, 12798 INVALID_FILE_PATH_FORMAT,
12859 INVALID_OVERLAY_CHANGE, 12799 INVALID_OVERLAY_CHANGE,
12860 INVALID_PARAMETER, 12800 INVALID_PARAMETER,
12861 INVALID_REQUEST, 12801 INVALID_REQUEST,
12862 ORGANIZE_DIRECTIVES_ERROR, 12802 ORGANIZE_DIRECTIVES_ERROR,
12863 REFACTORING_REQUEST_CANCELLED, 12803 REFACTORING_REQUEST_CANCELLED,
12864 SERVER_ALREADY_STARTED, 12804 SERVER_ALREADY_STARTED,
12865 SERVER_ERROR, 12805 SERVER_ERROR,
(...skipping 23 matching lines...) Expand all
12889 case "FORMAT_WITH_ERRORS": 12829 case "FORMAT_WITH_ERRORS":
12890 return FORMAT_WITH_ERRORS; 12830 return FORMAT_WITH_ERRORS;
12891 case "GET_ERRORS_INVALID_FILE": 12831 case "GET_ERRORS_INVALID_FILE":
12892 return GET_ERRORS_INVALID_FILE; 12832 return GET_ERRORS_INVALID_FILE;
12893 case "GET_IMPORTED_ELEMENTS_INVALID_FILE": 12833 case "GET_IMPORTED_ELEMENTS_INVALID_FILE":
12894 return GET_IMPORTED_ELEMENTS_INVALID_FILE; 12834 return GET_IMPORTED_ELEMENTS_INVALID_FILE;
12895 case "GET_NAVIGATION_INVALID_FILE": 12835 case "GET_NAVIGATION_INVALID_FILE":
12896 return GET_NAVIGATION_INVALID_FILE; 12836 return GET_NAVIGATION_INVALID_FILE;
12897 case "GET_REACHABLE_SOURCES_INVALID_FILE": 12837 case "GET_REACHABLE_SOURCES_INVALID_FILE":
12898 return GET_REACHABLE_SOURCES_INVALID_FILE; 12838 return GET_REACHABLE_SOURCES_INVALID_FILE;
12839 case "IMPORT_ELEMENTS_INVALID_FILE":
12840 return IMPORT_ELEMENTS_INVALID_FILE;
12899 case "INVALID_ANALYSIS_ROOT": 12841 case "INVALID_ANALYSIS_ROOT":
12900 return INVALID_ANALYSIS_ROOT; 12842 return INVALID_ANALYSIS_ROOT;
12901 case "INVALID_EXECUTION_CONTEXT": 12843 case "INVALID_EXECUTION_CONTEXT":
12902 return INVALID_EXECUTION_CONTEXT; 12844 return INVALID_EXECUTION_CONTEXT;
12903 case "INVALID_FILE_PATH_FORMAT": 12845 case "INVALID_FILE_PATH_FORMAT":
12904 return INVALID_FILE_PATH_FORMAT; 12846 return INVALID_FILE_PATH_FORMAT;
12905 case "INVALID_OVERLAY_CHANGE": 12847 case "INVALID_OVERLAY_CHANGE":
12906 return INVALID_OVERLAY_CHANGE; 12848 return INVALID_OVERLAY_CHANGE;
12907 case "INVALID_PARAMETER": 12849 case "INVALID_PARAMETER":
12908 return INVALID_PARAMETER; 12850 return INVALID_PARAMETER;
(...skipping 2485 matching lines...) Expand 10 before | Expand all | Expand 10 after
15394 hash = JenkinsSmiHash.combine(hash, classElement.hashCode); 15336 hash = JenkinsSmiHash.combine(hash, classElement.hashCode);
15395 hash = JenkinsSmiHash.combine(hash, displayName.hashCode); 15337 hash = JenkinsSmiHash.combine(hash, displayName.hashCode);
15396 hash = JenkinsSmiHash.combine(hash, memberElement.hashCode); 15338 hash = JenkinsSmiHash.combine(hash, memberElement.hashCode);
15397 hash = JenkinsSmiHash.combine(hash, superclass.hashCode); 15339 hash = JenkinsSmiHash.combine(hash, superclass.hashCode);
15398 hash = JenkinsSmiHash.combine(hash, interfaces.hashCode); 15340 hash = JenkinsSmiHash.combine(hash, interfaces.hashCode);
15399 hash = JenkinsSmiHash.combine(hash, mixins.hashCode); 15341 hash = JenkinsSmiHash.combine(hash, mixins.hashCode);
15400 hash = JenkinsSmiHash.combine(hash, subclasses.hashCode); 15342 hash = JenkinsSmiHash.combine(hash, subclasses.hashCode);
15401 return JenkinsSmiHash.finish(hash); 15343 return JenkinsSmiHash.finish(hash);
15402 } 15344 }
15403 } 15345 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698