Chromium Code Reviews

Unified Diff: runtime/vm/intrinsifier_x64.cc

Issue 11230011: Make hasNext a getter instead of a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: runtime/vm/intrinsifier_x64.cc
diff --git a/runtime/vm/intrinsifier_x64.cc b/runtime/vm/intrinsifier_x64.cc
index a1851a6e37a62217b00ff9bc4c98733d7714f02c..249393c60d73464dbb078f62d54dc6a90b82ff1c 100644
--- a/runtime/vm/intrinsifier_x64.cc
+++ b/runtime/vm/intrinsifier_x64.cc
@@ -1479,10 +1479,10 @@ bool Intrinsifier::FixedSizeArrayIterator_next(Assembler* assembler) {
// Class 'FixedSizeArrayIterator':
-// bool hasNext() {
+// bool get hasNext {
// return _length > _pos;
// }
-bool Intrinsifier::FixedSizeArrayIterator_hasNext(Assembler* assembler) {
+bool Intrinsifier::FixedSizeArrayIterator_getHasNext(Assembler* assembler) {
Label fall_through, is_true;
const Bool& bool_true = Bool::ZoneHandle(Bool::True());
const Bool& bool_false = Bool::ZoneHandle(Bool::False());

Powered by Google App Engine