We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908005a commit 9b8ab81Copy full SHA for 9b8ab81
cql.js
@@ -165,8 +165,8 @@ CQLSearchClause.prototype = {
165
default: return rel;
166
}
167
168
-
169
+
170
// CQLBoolean
171
var CQLBoolean = function () {
172
this.op = null;
@@ -184,6 +184,7 @@ CQLBoolean.prototype = {
184
(this.modifiers.length > 0 ? '/' + this.modifiers.join('/') : '') +
185
' ' + (this.right.op ? '(' + this.right + ')' : this.right);;
186
},
187
188
toXCQL: function (n, c) {
189
var s = indent(n, c) + "<triple>\n";
190
s = s + indent(n + 1, c) + "<boolean>\n" +
@@ -219,6 +220,7 @@ CQLBoolean.prototype = {
219
220
221
222
223
224
// CQLParser
225
var CQLParser = function () {
226
this.qi = null;
0 commit comments