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

Unified Diff: lib/math/math_patch.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « lib/internal/internal_patch.dart ('k') | lib/os/event_handler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/math/math_patch.dart
diff --git a/lib/math/math_patch.dart b/lib/math/math_patch.dart
index a7f9a476c5d7082f1a01c7b399b8e689dcc0785b..a6a0121b7ae3a01c9a9bca45c11bf419ef170138 100644
--- a/lib/math/math_patch.dart
+++ b/lib/math/math_patch.dart
@@ -2,8 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-import 'dart:fletch._system' as fletch;
-import 'dart:fletch._system' show patch;
+import 'dart:dartino._system' as dartino;
+import 'dart:dartino._system' show patch;
@patch class Random {
@patch factory Random([int seed]) {
@@ -205,24 +205,24 @@ int _intPow(int base, int exponent) {
}
-@fletch.native external double _sin(double x);
+@dartino.native external double _sin(double x);
-@fletch.native external double _cos(double x);
+@dartino.native external double _cos(double x);
-@fletch.native external double _tan(double x);
+@dartino.native external double _tan(double x);
-@fletch.native external double _acos(double x);
+@dartino.native external double _acos(double x);
-@fletch.native external double _asin(double x);
+@dartino.native external double _asin(double x);
-@fletch.native external double _atan(double x);
+@dartino.native external double _atan(double x);
-@fletch.native external double _sqrt(double x);
+@dartino.native external double _sqrt(double x);
-@fletch.native external double _exp(double x);
+@dartino.native external double _exp(double x);
-@fletch.native external double _log(double x);
+@dartino.native external double _log(double x);
-@fletch.native external double _atan2(double a, double b);
+@dartino.native external double _atan2(double a, double b);
-@fletch.native external double _pow(double x, double exponent);
+@dartino.native external double _pow(double x, double exponent);
« no previous file with comments | « lib/internal/internal_patch.dart ('k') | lib/os/event_handler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698