aboutsummaryrefslogtreecommitdiffstats
path: root/public/prism/prism-xquery.min.js
blob: 794bb950cd07874fe84d5457ebaa7dd85b9fbd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
!(function (e) {
  (e.languages.xquery = e.languages.extend('markup', {
    'xquery-comment': {
      pattern: /\(:[\s\S]*?:\)/,
      greedy: !0,
      alias: 'comment',
    },
    string: { pattern: /(["'])(?:\1\1|(?!\1)[\s\S])*\1/, greedy: !0 },
    extension: { pattern: /\(#.+?#\)/, alias: 'symbol' },
    variable: /\$[-\w:]+/,
    axis: {
      pattern:
        /(^|[^-])(?:ancestor(?:-or-self)?|attribute|child|descendant(?:-or-self)?|following(?:-sibling)?|parent|preceding(?:-sibling)?|self)(?=::)/,
      lookbehind: !0,
      alias: 'operator',
    },
    'keyword-operator': {
      pattern:
        /(^|[^:-])\b(?:and|castable as|div|eq|except|ge|gt|idiv|instance of|intersect|is|le|lt|mod|ne|or|union)\b(?=$|[^:-])/,
      lookbehind: !0,
      alias: 'operator',
    },
    keyword: {
      pattern:
        /(^|[^:-])\b(?:as|ascending|at|base-uri|boundary-space|case|cast as|collation|construction|copy-namespaces|declare|default|descending|else|empty (?:greatest|least)|encoding|every|external|for|function|if|import|in|inherit|lax|let|map|module|namespace|no-inherit|no-preserve|option|order(?: by|ed|ing)?|preserve|return|satisfies|schema|some|stable|strict|strip|then|to|treat as|typeswitch|unordered|validate|variable|version|where|xquery)\b(?=$|[^:-])/,
      lookbehind: !0,
    },
    function: /[\w-]+(?::[\w-]+)*(?=\s*\()/,
    'xquery-element': {
      pattern: /(element\s+)[\w-]+(?::[\w-]+)*/,
      lookbehind: !0,
      alias: 'tag',
    },
    'xquery-attribute': {
      pattern: /(attribute\s+)[\w-]+(?::[\w-]+)*/,
      lookbehind: !0,
      alias: 'attr-name',
    },
    builtin: {
      pattern:
        /(^|[^:-])\b(?:attribute|comment|document|element|processing-instruction|text|xs:(?:ENTITIES|ENTITY|ID|IDREFS?|NCName|NMTOKENS?|NOTATION|Name|QName|anyAtomicType|anyType|anyURI|base64Binary|boolean|byte|date|dateTime|dayTimeDuration|decimal|double|duration|float|gDay|gMonth|gMonthDay|gYear|gYearMonth|hexBinary|int|integer|language|long|negativeInteger|nonNegativeInteger|nonPositiveInteger|normalizedString|positiveInteger|short|string|time|token|unsigned(?:Byte|Int|Long|Short)|untyped(?:Atomic)?|yearMonthDuration))\b(?=$|[^:-])/,
      lookbehind: !0,
    },
    number: /\b\d+(?:\.\d+)?(?:E[+-]?\d+)?/,
    operator: [
      /[+*=?|@]|\.\.?|:=|!=|<[=<]?|>[=>]?/,
      { pattern: /(\s)-(?=\s)/, lookbehind: !0 },
    ],
    punctuation: /[[\](){},;:/]/,
  })),
    (e.languages.xquery.tag.pattern =
      /<\/?(?!\d)[^\s>\/=$<%]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\[\s\S]|\{(?!\{)(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])+\}|(?!\1)[^\\])*\1|[^\s'">=]+))?)*\s*\/?>/),
    (e.languages.xquery.tag.inside['attr-value'].pattern =
      /=(?:("|')(?:\\[\s\S]|\{(?!\{)(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])+\}|(?!\1)[^\\])*\1|[^\s'">=]+)/),
    (e.languages.xquery.tag.inside['attr-value'].inside.punctuation = /^="|"$/),
    (e.languages.xquery.tag.inside['attr-value'].inside.expression = {
      pattern: /\{(?!\{)(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])+\}/,
      inside: e.languages.xquery,
      alias: 'language-xquery',
    });
  var t = function (e) {
      return 'string' == typeof e
        ? e
        : 'string' == typeof e.content
        ? e.content
        : e.content.map(t).join('');
    },
    n = function (a) {
      for (var o = [], i = 0; i < a.length; i++) {
        var r = a[i],
          s = !1;
        if (
          ('string' != typeof r &&
            ('tag' === r.type && r.content[0] && 'tag' === r.content[0].type
              ? '</' === r.content[0].content[0].content
                ? o.length > 0 &&
                  o[o.length - 1].tagName === t(r.content[0].content[1]) &&
                  o.pop()
                : '/>' === r.content[r.content.length - 1].content ||
                  o.push({
                    tagName: t(r.content[0].content[1]),
                    openedBraces: 0,
                  })
              : !(
                  o.length > 0 &&
                  'punctuation' === r.type &&
                  '{' === r.content
                ) ||
                (a[i + 1] &&
                  'punctuation' === a[i + 1].type &&
                  '{' === a[i + 1].content) ||
                (a[i - 1] &&
                  'plain-text' === a[i - 1].type &&
                  '{' === a[i - 1].content)
              ? o.length > 0 &&
                o[o.length - 1].openedBraces > 0 &&
                'punctuation' === r.type &&
                '}' === r.content
                ? o[o.length - 1].openedBraces--
                : 'comment' !== r.type && (s = !0)
              : o[o.length - 1].openedBraces++),
          (s || 'string' == typeof r) &&
            o.length > 0 &&
            0 === o[o.length - 1].openedBraces)
        ) {
          var l = t(r);
          i < a.length - 1 &&
            ('string' == typeof a[i + 1] || 'plain-text' === a[i + 1].type) &&
            ((l += t(a[i + 1])), a.splice(i + 1, 1)),
            i > 0 &&
              ('string' == typeof a[i - 1] || 'plain-text' === a[i - 1].type) &&
              ((l = t(a[i - 1]) + l), a.splice(i - 1, 1), i--),
            /^\s+$/.test(l)
              ? (a[i] = l)
              : (a[i] = new e.Token('plain-text', l, null, l));
        }
        r.content && 'string' != typeof r.content && n(r.content);
      }
    };
  e.hooks.add('after-tokenize', function (e) {
    'xquery' === e.language && n(e.tokens);
  });
})(Prism);