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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 50983002: Implement fromEnvironment on bool, int and String (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed more review comments Created 7 years, 2 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 1c3ea31c266a9f2fdfa13a79729fe2c95b08a6fa..2417f2b43746e4b37add915248c1fe32b076babf 100644
--- a/runtime/vm/bootstrap_natives.h
+++ b/runtime/vm/bootstrap_natives.h
@@ -37,8 +37,10 @@ namespace dart {
V(Integer_moduloFromInteger, 2) \
V(Integer_greaterThanFromInteger, 2) \
V(Integer_equalToInteger, 2) \
+ V(Integer_fromEnvironment, 3) \
V(Integer_parse, 1) \
V(Integer_leftShiftWithMask32, 3) \
+ V(Bool_fromEnvironment, 3) \
V(RawReceivePortImpl_factory, 1) \
V(RawReceivePortImpl_closeInternal, 1) \
V(SendPortImpl_sendInternal_, 3) \
@@ -99,6 +101,7 @@ namespace dart {
V(String_charAt, 2) \
V(String_codeUnitAt, 2) \
V(String_concat, 2) \
+ V(String_fromEnvironment, 3) \
V(String_toLowerCase, 1) \
V(String_toUpperCase, 1) \
V(String_concatRange, 3) \

Powered by Google App Engine
This is Rietveld 408576698