354a4ec420
Change-Id: I6529a9ac0ad6557dc751be5c6f7bf14c9d45f909 Reviewed-on: https://dart-review.googlesource.com/11400 Commit-Queue: Florian Loitsch <floitsch@google.com> Reviewed-by: Jakob Roland Andersen <jakobr@google.com>
28 lines
1.1 KiB
Dart
28 lines
1.1 KiB
Dart
// Copyright (c) 2013, 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.
|
|
|
|
/// Test of a common rounding bug.
|
|
///
|
|
/// This bug is common in JavaScript implementations because the ECMA-262
|
|
/// specification of JavaScript incorrectly claims:
|
|
///
|
|
/// The value of [:Math.round(x):] is the same as the value of
|
|
/// [:Math.floor(x+0.5):], except when x is 0 or is less than 0 but greater
|
|
/// than or equal to -0.5; for these cases [:Math.round(x):] returns 0, but
|
|
/// [:Math.floor(x+0.5):] returns +0.
|
|
///
|
|
/// However, 0.49999999999999994 + 0.5 is 1 and 9007199254740991 + 0.5 is
|
|
/// 9007199254740992, so you cannot implement Math.round in terms of
|
|
/// Math.floor.
|
|
|
|
import 'package:expect/expect.dart';
|
|
|
|
main() {
|
|
Expect.equals(0, (0.49999999999999994).round());
|
|
Expect.equals(0, (-0.49999999999999994).round());
|
|
|
|
Expect.equals(9007199254740991, (9007199254740991.0).round());
|
|
Expect.equals(-9007199254740991, (-9007199254740991.0).round());
|
|
}
|