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

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

Issue 493363007: Fixes for comments in CL 474193003 (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
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisStatus.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 cce96b6a127f1a9e98b9917a5bff3f47ba61199a..5da2e362a637a610e91e6d6ebc977cb53af4e3e5 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
@@ -119,21 +119,21 @@ public class AnalysisOptions {
/**
* True if the client wants to enable support for the proposed async feature.
*/
- public Boolean isEnableAsync() {
+ public Boolean enableAsync() {
scheglov 2014/08/27 21:07:55 Is it intentional that we drop "is" here too?
jwren 2014/08/27 21:22:17 Yes, it was my intention to remove the 'is'. We c
return enableAsync;
}
/**
* True if the client wants to enable support for the proposed deferred loading feature.
*/
- public Boolean isEnableDeferredLoading() {
+ public Boolean enableDeferredLoading() {
return enableDeferredLoading;
}
/**
* True if the client wants to enable support for the proposed enum feature.
*/
- public Boolean isEnableEnums() {
+ public Boolean enableEnums() {
return enableEnums;
}
@@ -141,14 +141,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 isGenerateDart2jsHints() {
+ public Boolean generateDart2jsHints() {
return generateDart2jsHints;
}
/**
* True is hints should be generated as part of generating errors and warnings.
*/
- public Boolean isGenerateHints() {
+ public Boolean generateHints() {
return generateHints;
}
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/AnalysisStatus.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698