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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java

Issue 11534013: Issue 7282. Report error for deprecated === and !== (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
index 5889eb01a8401a1eef866e51914f12c4bff69b88..acdfc77b99752cab52c4994566ada761c592857a 100644
--- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
+++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
@@ -123,9 +123,7 @@ public class TypeAnalyzerTest extends TypeAnalyzerTestCase {
}
EnumSet<Token> equalityOperators = EnumSet.of(Token.EQ,
- Token.NE,
- Token.EQ_STRICT,
- Token.NE_STRICT);
+ Token.NE);
for (Token op : equalityOperators) {
String expression;
expression = String.format("untyped %s untyped", op.getSyntax());

Powered by Google App Engine
This is Rietveld 408576698