-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Host OS is Ubuntu 12.04 Server. Slave is Win7
The default mode, according the the jslint documentation, is that bitwise operators are tolerated. Even though this is the case, we are still getting:
Unexpected use of '<<'.
Unexpected use of '|'.
Unexpected use of '&'.
We tried adding an explicit include of -Dbitwise=true (and even tried false), but that did not help.
Sample code that this is being reported on:
this.id = newCtx << 28 | newP | newD << 8 | newI;