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

Unified Diff: tests/language_strong/compile_time_constant3_test.dart

Issue 2994383002: Migrating block 50, first commit, after tool has run (Closed)
Patch Set: formatting Created 3 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
Index: tests/language_strong/compile_time_constant3_test.dart
diff --git a/tests/language_strong/compile_time_constant3_test.dart b/tests/language_strong/compile_time_constant3_test.dart
deleted file mode 100644
index 172308647bdcdfff61f535b0754c8631887c403c..0000000000000000000000000000000000000000
--- a/tests/language_strong/compile_time_constant3_test.dart
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-import "package:expect/expect.dart";
-
-const x = 19.5;
-const y = 3.3;
-const g1 = x + y;
-const g2 = x * y;
-const g3 = x / y;
-const g4 = x ~/ y;
-const g5 = -x;
-const g6 = x < y;
-const g7 = x <= y;
-const g8 = x <= x;
-const g9 = x > y;
-const g10 = x >= y;
-const g11 = x >= x;
-const g12 = x == y;
-const g13 = x == x;
-const g14 = x != y;
-const g15 = x != x;
-const g16 = g1 + g2 + g3 + g4 + g5;
-const g17 = x % y;
-
-main() {
- Expect.equals(22.8, g1);
- Expect.equals(64.35, g2);
- Expect.equals(5.909090909090909, g3);
- Expect.equals(5.0, g4);
- Expect.equals(-19.5, g5);
- Expect.equals(false, g6);
- Expect.equals(false, g7);
- Expect.equals(true, g8);
- Expect.equals(true, g9);
- Expect.equals(true, g10);
- Expect.equals(true, g11);
- Expect.equals(false, g12);
- Expect.equals(true, g13);
- Expect.equals(true, g14);
- Expect.equals(false, g15);
- Expect.equals(78.5590909090909, g16);
- Expect.equals(3.000000000000001, g17);
-}

Powered by Google App Engine
This is Rietveld 408576698