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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 11316031: - Move MathNatives from dart:core to dart:math. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « runtime/lib/math_sources.gypi ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap_natives.h
===================================================================
--- runtime/vm/bootstrap_natives.h (revision 14972)
+++ runtime/vm/bootstrap_natives.h (working copy)
@@ -27,6 +27,7 @@
V(Integer_moduloFromInteger, 2) \
V(Integer_greaterThanFromInteger, 2) \
V(Integer_equalToInteger, 2) \
+ V(Integer_parse, 1) \
V(ReceivePortImpl_factory, 1) \
V(ReceivePortImpl_closeInternal, 1) \
V(SendPortImpl_sendInternal_, 3) \
@@ -55,6 +56,7 @@
V(Double_ceil, 1) \
V(Double_truncate, 1) \
V(Double_toInt, 1) \
+ V(Double_parse, 1) \
V(Double_toStringAsFixed, 2) \
V(Double_toStringAsExponential, 2) \
V(Double_toStringAsPrecision, 2) \
@@ -80,19 +82,17 @@
V(String_toLowerCase, 1) \
V(String_toUpperCase, 1) \
V(Strings_concatAll, 1) \
- V(MathNatives_sqrt, 1) \
- V(MathNatives_sin, 1) \
- V(MathNatives_cos, 1) \
- V(MathNatives_tan, 1) \
- V(MathNatives_asin, 1) \
- V(MathNatives_acos, 1) \
- V(MathNatives_atan, 1) \
- V(MathNatives_atan2, 2) \
- V(MathNatives_exp, 1) \
- V(MathNatives_log, 1) \
- V(MathNatives_random, 0) \
- V(MathNatives_parseInt, 1) \
- V(MathNatives_parseDouble, 1) \
+ V(Math_sqrt, 1) \
+ V(Math_sin, 1) \
+ V(Math_cos, 1) \
+ V(Math_tan, 1) \
+ V(Math_asin, 1) \
+ V(Math_acos, 1) \
+ V(Math_atan, 1) \
+ V(Math_atan2, 2) \
+ V(Math_exp, 1) \
+ V(Math_log, 1) \
+ V(Math_random, 0) \
V(DateNatives_currentTimeMillis, 0) \
V(DateNatives_timeZoneName, 1) \
V(DateNatives_timeZoneOffsetInSeconds, 1) \
« no previous file with comments | « runtime/lib/math_sources.gypi ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698