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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 515183002: Make String.fromCharCodes take start/end. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't say that end must be greater than start. Passing the actual length should be the same as pass… Created 6 years, 4 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: runtime/vm/bootstrap_natives.h
diff --git a/runtime/vm/bootstrap_natives.h b/runtime/vm/bootstrap_natives.h
index 1c9acdbe1d110b7d02f2136c6f0543556d4d3eb0..70d070c9add075641325bd9936310a2b7de98200 100644
--- a/runtime/vm/bootstrap_natives.h
+++ b/runtime/vm/bootstrap_natives.h
@@ -94,13 +94,13 @@ namespace dart {
V(List_getLength, 1) \
V(List_copyFromObjectArray, 5) \
V(ImmutableList_from, 4) \
- V(StringBase_createFromCodePoints, 1) \
+ V(StringBase_createFromCodePoints, 3) \
V(StringBase_substringUnchecked, 3) \
V(StringBuffer_createStringFromUint16Array, 3) \
V(OneByteString_substringUnchecked, 3) \
V(OneByteString_splitWithCharCode, 2) \
V(OneByteString_allocate, 1) \
- V(OneByteString_allocateFromOneByteList, 1) \
+ V(OneByteString_allocateFromOneByteList, 3) \
V(OneByteString_setAt, 3) \
V(ExternalOneByteString_getCid, 0) \
V(String_getHashCode, 1) \

Powered by Google App Engine
This is Rietveld 408576698