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

Unified Diff: tests/language/if_and_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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
« no previous file with comments | « tests/language/function_type_alias_test.dart ('k') | tests/language/list_literal3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/if_and_test.dart
diff --git a/tests/language/if_and_test.dart b/tests/language/if_and_test.dart
index 75b5b91169570f3a3b5dc176b0e59a2f5fecb48d..0b0cc84a8760394e334bd3b910efcbd0c4c3b72f 100644
--- a/tests/language/if_and_test.dart
+++ b/tests/language/if_and_test.dart
@@ -11,7 +11,7 @@ int64_bits(x) => x;
class A {
opshr(int n, a2) {
int res2;
- bool negative = a2 === 496;
+ bool negative = a2 == 496;
res2 = _shiftRight(a2, n);
if (negative) {
« no previous file with comments | « tests/language/function_type_alias_test.dart ('k') | tests/language/list_literal3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698