Skip to content

Commit 9b8ab81

Browse files
committed
formatting
1 parent 908005a commit 9b8ab81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cql.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ CQLSearchClause.prototype = {
165165
default: return rel;
166166
}
167167
}
168-
169168
}
169+
170170
// CQLBoolean
171171
var CQLBoolean = function () {
172172
this.op = null;
@@ -184,6 +184,7 @@ CQLBoolean.prototype = {
184184
(this.modifiers.length > 0 ? '/' + this.modifiers.join('/') : '') +
185185
' ' + (this.right.op ? '(' + this.right + ')' : this.right);;
186186
},
187+
187188
toXCQL: function (n, c) {
188189
var s = indent(n, c) + "<triple>\n";
189190
s = s + indent(n + 1, c) + "<boolean>\n" +
@@ -219,6 +220,7 @@ CQLBoolean.prototype = {
219220
}
220221

221222
}
223+
222224
// CQLParser
223225
var CQLParser = function () {
224226
this.qi = null;

0 commit comments

Comments
 (0)