MCPcopy Create free account
hub / github.com/apache/cloudstack / logicalOR

Function logicalOR

tools/ngui/static/js/lib/angular.js:6199–6209  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6197 }
6198
6199 function logicalOR() {
6200 var left = logicalAND();
6201 var token;
6202 while(true) {
6203 if ((token = expect('||'))) {
6204 left = binaryFn(left, token.fn, logicalAND());
6205 } else {
6206 return left;
6207 }
6208 }
6209 }
6210
6211 function logicalAND() {
6212 var left = equality();

Callers 1

_assignmentFunction · 0.85

Calls 3

logicalANDFunction · 0.85
expectFunction · 0.85
binaryFnFunction · 0.85

Tested by

no test coverage detected