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 c49bb5f commit 22861a0Copy full SHA for 22861a0
mode/xquery/xquery.js
@@ -19,10 +19,7 @@ CodeMirror.defineMode("xquery", function() {
19
var keywords = function(){
20
// convenience functions used to build keywords object
21
function kw(type) {return {type: type, style: "keyword"};}
22
- var A = kw("keyword a")
23
- , B = kw("keyword b")
24
- , C = kw("keyword c")
25
- , operator = kw("operator")
+ var operator = kw("operator")
26
, atom = {type: "atom", style: "atom"}
27
, punctuation = {type: "punctuation", style: null}
28
, qualifier = {type: "axis_specifier", style: "qualifier"};
0 commit comments