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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 bool Intrinsifier::FixedSizeArrayIterator_next(Assembler* assembler) { 302 bool Intrinsifier::FixedSizeArrayIterator_next(Assembler* assembler) {
303 return false; 303 return false;
304 } 304 }
305 305
306 306
307 bool Intrinsifier::FixedSizeArrayIterator_hasNext(Assembler* assembler) { 307 bool Intrinsifier::FixedSizeArrayIterator_hasNext(Assembler* assembler) {
308 return false; 308 return false;
309 } 309 }
310 310
311 311
312 bool Intrinsifier::String_getHashCode(Assembler* assembler) {
313 return false;
314 }
315
316
312 bool Intrinsifier::String_getLength(Assembler* assembler) { 317 bool Intrinsifier::String_getLength(Assembler* assembler) {
313 return false; 318 return false;
314 } 319 }
315 320
316 321
317 bool Intrinsifier::String_charCodeAt(Assembler* assembler) { 322 bool Intrinsifier::String_charCodeAt(Assembler* assembler) {
318 return false; 323 return false;
319 } 324 }
320 325
321
322 bool Intrinsifier::String_hashCode(Assembler* assembler) {
323 return false;
324 }
325
326 326
327 bool Intrinsifier::String_isEmpty(Assembler* assembler) { 327 bool Intrinsifier::String_isEmpty(Assembler* assembler) {
328 return false; 328 return false;
329 } 329 }
330 330
331 } // namespace dart 331 } // namespace dart
332 332
333 #endif // defined TARGET_ARCH_ARM 333 #endif // defined TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698