Index: runtime/vm/intrinsifier.h |
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h |
index 61883638cb87d3090b3471a715b5818bbe196b52..d6d2837059058f0ad369c0077e4f824bb4763154 100644 |
--- a/runtime/vm/intrinsifier.h |
+++ b/runtime/vm/intrinsifier.h |
@@ -78,9 +78,6 @@ namespace dart { |
V(::, sin, Math_sin, 1273932041) \ |
V(::, cos, Math_cos, 1749547468) \ |
V(Object, ==, Object_equal, 2126956595) \ |
- V(_FixedSizeArrayIterator, get:hasNext, \ |
- FixedSizeArrayIterator_getHasNext, 682147711) \ |
- V(_FixedSizeArrayIterator, next, FixedSizeArrayIterator_next, 1283926262) \ |
V(_StringBase, get:hashCode, String_getHashCode, 320803993) \ |
V(_StringBase, get:isEmpty, String_getIsEmpty, 711547329) \ |
V(_StringBase, get:length, String_getLength, 320803993) \ |
@@ -104,6 +101,9 @@ namespace dart { |
V(_Float64Array, []=, Float64Array_setIndexed, 1948811847) \ |
V(_ExternalUint8Array, [], ExternalUint8Array_getIndexed, 753790851) \ |
+// TODO(srdjan): Implement _FixedSizeArrayIterator, get:current and |
+// _FixedSizeArrayIterator, moveNext. |
+ |
// Forward declarations. |
class Assembler; |
class Function; |