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

Unified Diff: vm/bootstrap_natives.h

Issue 10012042: Wire GrowableArray to use the internal VM object. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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: vm/bootstrap_natives.h
===================================================================
--- vm/bootstrap_natives.h (revision 6293)
+++ vm/bootstrap_natives.h (working copy)
@@ -152,8 +152,14 @@
V(isolate_getPortInternal, 0) \
V(isolate_spawnFunction, 1) \
V(Mirrors_send, 3) \
+ V(GrowableObjectArray_allocate, 2) \
+ V(GrowableObjectArray_getIndexed, 2) \
+ V(GrowableObjectArray_setIndexed, 3) \
+ V(GrowableObjectArray_getLength, 1) \
+ V(GrowableObjectArray_getCapacity, 1) \
+ V(GrowableObjectArray_setLength, 2) \
+ V(GrowableObjectArray_setData, 2) \
-
BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY)
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698