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

Unified Diff: tests/compiler/dart2js_native/hash_code_test.dart

Issue 11191078: Make hashCode a getter and not a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 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: tests/compiler/dart2js_native/hash_code_test.dart
diff --git a/tests/compiler/dart2js_native/hash_code_test.dart b/tests/compiler/dart2js_native/hash_code_test.dart
index af4344167114741104e3e0531485fcd3c90b83c9..0c50d216bdf9d2151f06dcacb325e59d87f66baa 100644
--- a/tests/compiler/dart2js_native/hash_code_test.dart
+++ b/tests/compiler/dart2js_native/hash_code_test.dart
@@ -12,5 +12,5 @@ makeA = function(){return new A;};
main() {
setup();
- Expect.isTrue(makeA().hashCode() is int);
+ Expect.isTrue(makeA().hashCode is int);
}

Powered by Google App Engine
This is Rietveld 408576698