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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java

Issue 474193003: Make more use of generated code in Java analysis server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java
index d0721d765e8625d82c38c1320ca20710fd4d43d4..df6bff7e13f15ae47b5cbcfd44d7d91aaf198570 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/CompletionSuggestion.java
@@ -260,7 +260,7 @@ public class CompletionSuggestion {
/**
* True if the suggested element is deprecated.
*/
- public Boolean getIsDeprecated() {
+ public Boolean isIsDeprecated() {
scheglov 2014/08/24 17:18:26 Could we not to generate additional "is" if a bool
return isDeprecated;
}
@@ -268,7 +268,7 @@ public class CompletionSuggestion {
* True if the element is not known to be valid for the target. This happens if the type of the
* target is dynamic.
*/
- public Boolean getIsPotential() {
+ public Boolean isIsPotential() {
return isPotential;
}

Powered by Google App Engine
This is Rietveld 408576698