-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
jq.js
78 lines (76 loc) · 2.06 KB
/
jq.js
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
// @ts-nocheck
jq.displayName = 'jq'
jq.aliases = []
/** @type {import('../core.js').Syntax} */
export default function jq(Prism) {
;(function (Prism) {
var interpolation = /\\\((?:[^()]|\([^()]*\))*\)/.source
var string = RegExp(
/(^|[^\\])"(?:[^"\r\n\\]|\\[^\r\n(]|__)*"/.source.replace(
/__/g,
function () {
return interpolation
}
)
)
var stringInterpolation = {
interpolation: {
pattern: RegExp(/((?:^|[^\\])(?:\\{2})*)/.source + interpolation),
lookbehind: true,
inside: {
content: {
pattern: /^(\\\()[\s\S]+(?=\)$)/,
lookbehind: true,
inside: null // see below
},
punctuation: /^\\\(|\)$/
}
}
}
var jq = (Prism.languages.jq = {
comment: /#.*/,
property: {
pattern: RegExp(string.source + /(?=\s*:(?!:))/.source),
lookbehind: true,
greedy: true,
inside: stringInterpolation
},
string: {
pattern: string,
lookbehind: true,
greedy: true,
inside: stringInterpolation
},
function: {
pattern: /(\bdef\s+)[a-z_]\w+/i,
lookbehind: true
},
variable: /\B\$\w+/,
'property-literal': {
pattern: /\b[a-z_]\w*(?=\s*:(?!:))/i,
alias: 'property'
},
keyword:
/\b(?:as|break|catch|def|elif|else|end|foreach|if|import|include|label|module|modulemeta|null|reduce|then|try|while)\b/,
boolean: /\b(?:false|true)\b/,
number: /(?:\b\d+\.|\B\.)?\b\d+(?:[eE][+-]?\d+)?\b/,
operator: [
{
pattern: /\|=?/,
alias: 'pipe'
},
/\.\.|[!=<>]?=|\?\/\/|\/\/=?|[-+*/%]=?|[<>?]|\b(?:and|not|or)\b/
],
'c-style-function': {
pattern: /\b[a-z_]\w*(?=\s*\()/i,
alias: 'function'
},
punctuation: /::|[()\[\]{},:;]|\.(?=\s*[\[\w$])/,
dot: {
pattern: /\./,
alias: 'important'
}
})
stringInterpolation.interpolation.inside.content.inside = jq
})(Prism)
}