blob: bb5d867d7bf528bb230eb8e03c683c7c01482490 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion double toDouble()
* Returns the double value represented by this object.
* @description Checks that this method returns correct value (rounded to the
* nearest finite double for very large integers).
* @author vasya
*/
import "../../../Utils/expect.dart";
import "dart:math" as Math;
main() {
final double MIN_DOUBLE = Math.pow(2.0, -1074);
final double NEG_MIN_DOUBLE = -1 * MIN_DOUBLE;
final double MAX_DOUBLE = (2 - Math.pow(2.0, -52)) * Math.pow(2.0, 1023);
final double NEG_MAX_DOUBLE = -1 * MAX_DOUBLE;
check(0, 0.0);
check(2147483647, 2147483647.0);
check(-2147483648, -2147483648.0);
check(4294967295, 4294967295.0);
check(-4294967296, -4294967296.0);
check(9223372036854775807, 9223372036854775807.0);
check(-9223372036854775808, -9223372036854775808.0);
check(-1844674407370955161, -1844674407370955161.0);
}
void check(int x, double ex) {
Expect.equals(ex, x.toDouble());
}