Chromium Code Reviews| 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; |
| } |