Files
sdk/tests/language_2/compile_time_constant3_test.dart
T
Morten Krogh-Jespersen 706d4231ea Migrating block 59, first commit, after tool has run.
There were tests that tested only checked mode, having their name on the form xx_checked_xx. Those files have been renamed to static.

We found an issue in the DDC regarding constant maps, the issue has been added to the status file.

R=rnystrom@google.com, whesse@google.com

Review-Url: https://codereview.chromium.org/2994383002 .
2017-08-25 12:10:13 +02:00

46 lines
1.1 KiB
Dart

// 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);
}