MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / bitwise

Function bitwise

lib/web/jshint.js:20356–20369  ·  view source on GitHub ↗
(s, f, p)

Source from the content-addressed store, hash-verified

20354
20355
20356 function bitwise(s, f, p) {
20357 var x = symbol(s, p);
20358 reserveName(x);
20359 x.infix = true;
20360 x.led = (typeof f === "function") ? f : function(left) {
20361 if (state.option.bitwise) {
20362 warning("W016", this, this.id);
20363 }
20364 this.left = left;
20365 this.right = expression(p);
20366 return this;
20367 };
20368 return x;
20369 }
20370
20371 function bitwiseassignop(s) {
20372 return assignop(s, function(left, that) {

Callers 1

jshint.jsFile · 0.85

Calls 4

symbolFunction · 0.85
reserveNameFunction · 0.85
warningFunction · 0.85
expressionFunction · 0.70

Tested by

no test coverage detected