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

Unified Diff: runtime/lib/math.dart

Issue 10836006: Rename MathNatives_2atan to MathNatives_atan2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
« no previous file with comments | « runtime/lib/math.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/math.dart
diff --git a/runtime/lib/math.dart b/runtime/lib/math.dart
index 85ee23877e2a96e131a10910cf16f93e696cfb58..9cba43fbf590c2b379ea4ff1a35839c3044f077a 100644
--- a/runtime/lib/math.dart
+++ b/runtime/lib/math.dart
@@ -32,7 +32,7 @@ class MathNatives {
static double _acos(double value) native "MathNatives_acos";
static double _asin(double value) native "MathNatives_asin";
static double _atan(double value) native "MathNatives_atan";
- static double _atan2(double a, double b) native "MathNatives_2atan";
+ static double _atan2(double a, double b) native "MathNatives_atan2";
static double _exp(double value) native "MathNatives_exp";
static double _log(double value) native "MathNatives_log";
static int _parseInt(String str) native "MathNatives_parseInt";
« no previous file with comments | « runtime/lib/math.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698