UNPKG

1.83 kBJavaScriptView Raw
1Prism.languages.julia = {
2 'comment': {
3 // support one level of nested comments
4 // https://github.com/JuliaLang/julia/pull/6128
5 pattern: /(^|[^\\])(?:#=(?:[^#=]|=(?!#)|#(?!=)|#=(?:[^#=]|=(?!#)|#(?!=))*=#)*=#|#.*)/,
6 lookbehind: true
7 },
8 'regex': {
9 // https://docs.julialang.org/en/v1/manual/strings/#Regular-Expressions-1
10 pattern: /r"(?:\\.|[^"\\\r\n])*"[imsx]{0,4}/,
11 greedy: true
12 },
13 'string': {
14 // https://docs.julialang.org/en/v1/manual/strings/#man-characters-1
15 // https://docs.julialang.org/en/v1/manual/strings/#String-Basics-1
16 // https://docs.julialang.org/en/v1/manual/strings/#non-standard-string-literals-1
17 // https://docs.julialang.org/en/v1/manual/running-external-programs/#Running-External-Programs-1
18 pattern: /"""[\s\S]+?"""|\w*"(?:\\.|[^"\\\r\n])*"|(^|[^\w'])'(?:\\[^\r\n][^'\r\n]*|[^\\\r\n])'|`(?:[^\\`\r\n]|\\.)*`/,
19 lookbehind: true,
20 greedy: true
21 },
22 'keyword': /\b(?:abstract|baremodule|begin|bitstype|break|catch|ccall|const|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|import|importall|in|let|local|macro|module|print|println|quote|return|struct|try|type|typealias|using|while)\b/,
23 'boolean': /\b(?:true|false)\b/,
24 'number': /(?:\b(?=\d)|\B(?=\.))(?:0[box])?(?:[\da-f]+(?:_[\da-f]+)*\.?(?:\d+(?:_\d+)*)?|\.\d+(?:_\d+)*)(?:[efp][+-]?\d+(?:_\d+)*)?j?/i,
25 // https://docs.julialang.org/en/v1/manual/mathematical-operations/
26 // https://docs.julialang.org/en/v1/manual/mathematical-operations/#Operator-Precedence-and-Associativity-1
27 'operator': /&&|\|\||[-+*^%÷⊻&$\\]=?|\/[\/=]?|!=?=?|\|[=>]?|<(?:<=?|[=:|])?|>(?:=|>>?=?)?|==?=?|[~≠≤≥'√∛]/,
28 'punctuation': /::?|[{}[\]();,.?]/,
29 // https://docs.julialang.org/en/v1/base/numbers/#Base.im
30 'constant': /\b(?:(?:NaN|Inf)(?:16|32|64)?|im|pi|e|catalan|eulergamma|golden)\b|[πℯγφ]/
31};