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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ValidResult.java

Issue 25939002: Symbol literal is constant. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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.engine/src/com/google/dart/engine/internal/constant/ValidResult.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ValidResult.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ValidResult.java
index 73952f0b753ffd3f52f895cd8bf9b1099409a91e..1d3bc3b3a8e18fad0d565362af019b27cbd0997e 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ValidResult.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ValidResult.java
@@ -67,6 +67,12 @@ public class ValidResult extends EvaluationResultImpl {
public static final ValidResult RESULT_OBJECT = new ValidResult(new Object());
/**
+ * A result object representing the an arbitrary symbol on which no further operations can be
+ * performed.
+ */
+ public static final ValidResult RESULT_SYMBOL = new ValidResult(new Object());
+
+ /**
* A result object representing the an arbitrary string on which no further operations can be
* performed.
*/

Powered by Google App Engine
This is Rietveld 408576698