Index: runtime/vm/intrinsifier.h |
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h |
index 84be7bdbe5fe19abb6983daef68f225312e3a5fb..559c743c943b0fe5d542eeaf511953ce01e3a6e6 100644 |
--- a/runtime/vm/intrinsifier.h |
+++ b/runtime/vm/intrinsifier.h |
@@ -52,26 +52,28 @@ namespace dart { |
V(_Double, isNaN, Double_isNaN) \ |
V(_Double, isNegative, Double_isNegative) \ |
V(_Double, toInt, Double_toInt) \ |
- V(ObjectArray, ObjectArray., ObjectArray_Allocate) \ |
- V(ObjectArray, get:length, Array_getLength) \ |
- V(ObjectArray, [], Array_getIndexed) \ |
- V(ObjectArray, []=, Array_setIndexed) \ |
- V(GrowableObjectArray, GrowableObjectArray.fromObjectArray, GArray_Allocate) \ |
- V(GrowableObjectArray, get:length, GrowableArray_getLength) \ |
- V(GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \ |
- V(GrowableObjectArray, [], GrowableArray_getIndexed) \ |
- V(GrowableObjectArray, []=, GrowableArray_setIndexed) \ |
- V(GrowableObjectArray, _setLength, GrowableArray_setLength) \ |
- V(GrowableObjectArray, _setData, GrowableArray_setData) \ |
- V(GrowableObjectArray, add, GrowableArray_add) \ |
- V(ImmutableArray, [], ImmutableArray_getIndexed) \ |
- V(ImmutableArray, get:length, ImmutableArray_getLength) \ |
+ V(_ObjectArray, ObjectArray., ObjectArray_Allocate) \ |
+ V(_ObjectArray, get:length, Array_getLength) \ |
+ V(_ObjectArray, [], Array_getIndexed) \ |
+ V(_ObjectArray, []=, Array_setIndexed) \ |
+ V(_GrowableObjectArray, \ |
+ GrowableObjectArray.fromObjectArray, \ |
Florian Schneider
2012/09/27 11:45:54
Shouldn't there be an _ as well like in _Double.fr
Mads Ager (google)
2012/09/27 11:46:41
Yikes, good catch. Yes, there should. Similarly fo
|
+ GArray_Allocate) \ |
+ V(_GrowableObjectArray, get:length, GrowableArray_getLength) \ |
+ V(_GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \ |
+ V(_GrowableObjectArray, [], GrowableArray_getIndexed) \ |
+ V(_GrowableObjectArray, []=, GrowableArray_setIndexed) \ |
+ V(_GrowableObjectArray, _setLength, GrowableArray_setLength) \ |
+ V(_GrowableObjectArray, _setData, GrowableArray_setData) \ |
+ V(_GrowableObjectArray, add, GrowableArray_add) \ |
+ V(_ImmutableArray, [], ImmutableArray_getIndexed) \ |
+ V(_ImmutableArray, get:length, ImmutableArray_getLength) \ |
V(::, sqrt, Math_sqrt) \ |
V(::, sin, Math_sin) \ |
V(::, cos, Math_cos) \ |
V(Object, ==, Object_equal) \ |
- V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \ |
- V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \ |
+ V(_FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \ |
+ V(_FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \ |
V(StringBase, get:length, String_getLength) \ |
V(StringBase, charCodeAt, String_charCodeAt) \ |
V(StringBase, hashCode, String_hashCode) \ |