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

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

Issue 23578028: Fix for issue 13272 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added missed file Created 7 years, 3 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/ErrorResult.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ErrorResult.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ErrorResult.java
index 3a55647f56187c786673c740a9914ed8ccd9d4ee..9fa682122252e7d1a32741b37104b82564eba31d 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ErrorResult.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/constant/ErrorResult.java
@@ -101,6 +101,11 @@ public class ErrorResult extends EvaluationResultImpl {
}
@Override
+ public EvaluationResultImpl applyBooleanConversion(ASTNode node) {
+ return this;
+ }
+
+ @Override
public EvaluationResultImpl bitAnd(BinaryExpression node, EvaluationResultImpl rightOperand) {
return rightOperand.bitAndError(node, this);
}

Powered by Google App Engine
This is Rietveld 408576698