formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git] / .svn / pristine / 78 / 78570c264e14d1351cca2be967bbe62329bb7cea.svn-base
blobade1179ae7e778b17a5dd72f254cd5fbfe2d1f57
1 // test for shift
2 var a = (2<<2);
3 var b = (16>>3);
4 var c = (-1 >>> 16);
5 result = a==8 && b==2 && c == 0xFFFF;