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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisOptions.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/AnalysisOptions.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisOptions.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisOptions.java
index c692c4db9f76b90a8b63fd34a7669eebfd7f97fa..cfa48340535d08786008035a47f0b92b37e9d863 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisOptions.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisOptions.java
@@ -118,21 +118,21 @@ public class AnalysisOptions {
/**
* True if the client wants to enable support for the proposed async feature.
*/
- public Boolean getEnableAsync() {
+ public Boolean isEnableAsync() {
return enableAsync;
}
/**
* True if the client wants to enable support for the proposed deferred loading feature.
*/
- public Boolean getEnableDeferredLoading() {
+ public Boolean isEnableDeferredLoading() {
return enableDeferredLoading;
}
/**
* True if the client wants to enable support for the proposed enum feature.
*/
- public Boolean getEnableEnums() {
+ public Boolean isEnableEnums() {
return enableEnums;
}
@@ -140,14 +140,14 @@ public class AnalysisOptions {
* True if hints that are specific to dart2js should be generated. This option is ignored if
* generateHints is false.
*/
- public Boolean getGenerateDart2jsHints() {
+ public Boolean isGenerateDart2jsHints() {
return generateDart2jsHints;
}
/**
* True is hints should be generated as part of generating errors and warnings.
*/
- public Boolean getGenerateHints() {
+ public Boolean isGenerateHints() {
return generateHints;
}

Powered by Google App Engine
This is Rietveld 408576698