Chromium Code Reviews| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/context/AnalysisResult.java |
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/context/AnalysisResult.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/context/AnalysisResult.java |
| index 6990293689c694f7252692dff67cc3e2f50e3345..337f957a65f2a7fba7c6cae27f476426f3ec86dd 100644 |
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/context/AnalysisResult.java |
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/context/AnalysisResult.java |
| @@ -13,7 +13,6 @@ |
| */ |
| package com.google.dart.engine.context; |
| - |
| /** |
| * Instances of the class {@code AnalysisResult} |
| */ |
| @@ -92,4 +91,13 @@ public class AnalysisResult { |
| public String getTaskClassName() { |
| return taskClassName; |
| } |
| + |
| + /** |
| + * Return {@code true} if there is no more to be performed after the task that was performed. |
| + * |
| + * @return {@code true} if there is no more to be performed after the task that was performed |
| + */ |
| + public boolean isMoreWork() { |
|
Brian Wilkerson
2014/03/11 18:36:53
Perhaps "hasMoreWork"?
Also, the comment states t
jwren
2014/03/11 21:53:04
Done.
|
| + return notices != null; |
| + } |
| } |