summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-apl.js
blob: 8e6302366273838f73d610288b3e23432d04debf (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
Prism.languages.apl = {
  comment: /(?:⍝|#[! ]).*$/m,
  string: {
    pattern: /'(?:[^'\r\n]|'')*'/,
    greedy: true,
  },
  number:
    /¯?(?:\d*\.?\b\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:(?:\d+(?:\.\d+)?|\.\d+)(?:e[+¯]?\d+)?|¯|∞))?/i,
  statement: /:[A-Z][a-z][A-Za-z]*\b/,
  'system-function': {
    pattern: /⎕[A-Z]+/i,
    alias: 'function',
  },
  constant: /[⍬⌾#⎕⍞]/,
  function: /[-+×÷⌈⌊∣|⍳⍸?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⊆⊇⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,
  'monadic-operator': {
    pattern: /[\\\/⌿⍀¨⍨⌶&∥]/,
    alias: 'operator',
  },
  'dyadic-operator': {
    pattern: /[.⍣⍠⍤∘⌸@⌺⍥]/,
    alias: 'operator',
  },
  assignment: {
    pattern: /←/,
    alias: 'keyword',
  },
  punctuation: /[\[;\]()◇⋄]/,
  dfn: {
    pattern: /[{}⍺⍵⍶⍹∇⍫:]/,
    alias: 'builtin',
  },
};
/\^(?:[$^;@()\[\]{}"':]|#[a-f\d]*)/i, alias: 'builtin' }, punctuation: /[\[\](){};]/, })); (n = e.languages.insertBefore('parser', 'keyword', { 'parser-comment': { pattern: /(\s)#.*/, lookbehind: !0, alias: 'comment' }, expression: { pattern: /(^|[^^])\((?:[^()]|\((?:[^()]|\((?:[^()])*\))*\))*\)/, greedy: !0, lookbehind: !0, inside: { string: { pattern: /(^|[^^])(["'])(?:(?!\2)[^^]|\^[\s\S])*\2/, lookbehind: !0, }, keyword: n.keyword, variable: n.variable, function: n.function, boolean: /\b(?:false|true)\b/, number: /\b(?:0x[a-f\d]+|\d+(?:\.\d*)?(?:e[+-]?\d+)?)\b/i, escape: n.escape, operator: /[~+*\/\\%]|!(?:\|\|?|=)?|&&?|\|\|?|==|<[<=]?|>[>=]?|-[fd]?|\b(?:def|eq|ge|gt|in|is|le|lt|ne)\b/, punctuation: n.punctuation, }, }, })), e.languages.insertBefore( 'inside', 'punctuation', { expression: n.expression, keyword: n.keyword, variable: n.variable, function: n.function, escape: n.escape, 'parser-punctuation': { pattern: n.punctuation, alias: 'punctuation' }, }, n.tag.inside['attr-value'] ); })(Prism);