7e6ae8ea09
It now extends ArgumentError. Review URL: https://codereview.chromium.org//11275042 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14405 260f80e4-7a28-3924-810f-c04153c831b5
38 lines
945 B
Dart
38 lines
945 B
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.
|
|
|
|
// Make sure we use JavaScript semantics when compiling compile-time constants.
|
|
// In this case we test that the value-range analysis uses JavaScript semantics
|
|
// too.
|
|
|
|
int inscrutable(int x) {
|
|
if (x == 0) return 0;
|
|
return x | inscrutable(x & (x - 1));
|
|
}
|
|
|
|
foo() {
|
|
var a = const [1, 2, 3, 4];
|
|
var i = 8007199254740992;
|
|
if (inscrutable(i) == 0) {
|
|
i++;
|
|
}
|
|
i += 1000000000000000;
|
|
// [i] is now at its maximum 53 bit value. The following increments will not
|
|
// have any effect.
|
|
i++;
|
|
i++;
|
|
i++;
|
|
i -= 1000000000000000;
|
|
i--;
|
|
i--;
|
|
i--;
|
|
i -= 8007199254740992; // In JS semantics [i] would be -3, now.
|
|
return a[i];
|
|
}
|
|
|
|
main() {
|
|
Expect.throws(() => foo(),
|
|
(e) => e is RangeError);
|
|
}
|