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

Unified Diff: tests/language/intrinsified_methods_test.dart

Issue 10829459: Deprecate Math object in corelib in favor of dart:math library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 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
« no previous file with comments | « tests/language/closure_type_test.dart ('k') | tests/language/math_vm_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/intrinsified_methods_test.dart
diff --git a/tests/language/intrinsified_methods_test.dart b/tests/language/intrinsified_methods_test.dart
index a12161a12d114f48a3f78d5e5ac893513d385834..13075a581c5b882eeb3abdb494a5437c20fd268f 100644
--- a/tests/language/intrinsified_methods_test.dart
+++ b/tests/language/intrinsified_methods_test.dart
@@ -3,6 +3,8 @@
// BSD-style license that can be found in the LICENSE file.
// Dart test program for testing the instanceof operation.
+#library('intrinsified_methods_test');
+#import('dart:math');
testIsNegative() {
Expect.isFalse((12.0).isNegative());
@@ -21,15 +23,15 @@ testIsNaN() {
testTrigonometric() {
- Expect.approxEquals(1.0, Math.sin(Math.PI / 2.0), 0.0001);
- Expect.approxEquals(1.0, Math.cos(0), 0.0001);
- Expect.approxEquals(1.0, Math.cos(0.0), 0.0001);
+ Expect.approxEquals(1.0, sin(PI / 2.0), 0.0001);
+ Expect.approxEquals(1.0, cos(0), 0.0001);
+ Expect.approxEquals(1.0, cos(0.0), 0.0001);
}
num foo(int n) {
var x;
for(var i = 0; i <= n; ++i) {
- Expect.equals(2.0, Math.sqrt(4.0));
+ Expect.equals(2.0, sqrt(4.0));
testIsNegative();
testIsNaN();
testTrigonometric();
« no previous file with comments | « tests/language/closure_type_test.dart ('k') | tests/language/math_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698