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

Unified Diff: runtime/vm/intrinsifier_arm.cc

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: runtime/vm/intrinsifier_arm.cc
diff --git a/runtime/vm/intrinsifier_arm.cc b/runtime/vm/intrinsifier_arm.cc
index 111185b35cd0616301b070a4e9ad01fc70241bef..59cace166ee932244624497234bc380605173367 100644
--- a/runtime/vm/intrinsifier_arm.cc
+++ b/runtime/vm/intrinsifier_arm.cc
@@ -309,17 +309,17 @@ bool Intrinsifier::FixedSizeArrayIterator_hasNext(Assembler* assembler) {
}
-bool Intrinsifier::String_getLength(Assembler* assembler) {
+bool Intrinsifier::String_getHashCode(Assembler* assembler) {
return false;
}
-bool Intrinsifier::String_charCodeAt(Assembler* assembler) {
+bool Intrinsifier::String_getLength(Assembler* assembler) {
return false;
}
-bool Intrinsifier::String_hashCode(Assembler* assembler) {
+bool Intrinsifier::String_charCodeAt(Assembler* assembler) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698