mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
241 B
27 lines
241 B
12 years ago
|
/*
|
||
|
* Bit op tests.
|
||
|
*/
|
||
|
|
||
|
/* FIXME: incomplete */
|
||
|
/* FIXME: precedence tests, associativity tests */
|
||
|
/* FIXME: ranges, coercion, etc */
|
||
|
|
||
|
/*===
|
||
|
64
|
||
|
===*/
|
||
|
|
||
|
print(255 & 64);
|
||
|
|
||
|
/*===
|
||
|
192
|
||
|
===*/
|
||
|
|
||
|
print(128 | 64);
|
||
|
|
||
|
/*===
|
||
|
191
|
||
|
===*/
|
||
|
|
||
|
print(255 ^ 64);
|
||
|
|