| // 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 int operator &(int other) |
| /// This operator implements a bit-wise AND operation. |
| /// @description Checks that this operator returns correct value. |
| /// @author vasya |
| |
| import "../../../Utils/expect.dart"; |
| |
| main() { |
| Expect.equals(0, 0 & 0); |
| Expect.equals(0, 0 & 1); |
| Expect.equals(0, 1 & 0); |
| Expect.equals(1, 1 & 1); |
| |
| Expect.equals(1, 25 & 3); |
| Expect.equals(9, 15 & 9); |
| |
| if (!isJS) { |
| // x & x = x |
| Expect.equals(0x100000000, 0x100000000 & 0x100000000); |
| Expect.equals(0x10000000000001, 0x10000000000001 & 0x10000000000001); |
| |
| Expect.equals(0, 0x100000000 & 0x80000000); |
| Expect.equals(0x10000000000000, 0x10000000000001 & 0x10000000000000); |
| Expect.equals(0, 0x4000000000000 & 0x3FFFFFFFFFFFF); |
| |
| // negative arguments |
| Expect.equals(1, -1 & 1); |
| Expect.equals(1, 1 & -1); |
| Expect.equals(-1, -1 & -1); |
| Expect.equals(-3, -3 & -3); |
| Expect.equals(1, -3 & 3); |
| Expect.equals(0, -3 & 2); |
| Expect.equals(-100, -100 & -1); |
| Expect.equals(-100, -1 & -100); |
| } |
| } |