Prism.languages.magma = { output: { pattern: /^(>.*(?:\r(?:\n|(?!\n))|\n))(?!>)(?:.+|(?:\r(?:\n|(?!\n))|\n)(?!>).*)(?:(?:\r(?:\n|(?!\n))|\n)(?!>).*)*/m, lookbehind: true, greedy: true, }, comment: { pattern: /\/\/.*|\/\*[\s\S]*?\*\//, greedy: true, }, string: { pattern: /(^|[^\\"])"(?:[^\r\n\\"]|\\.)*"/, lookbehind: true, greedy: true, }, // http://magma.maths.usyd.edu.au/magma/handbook/text/82 keyword: /\b(?:_|adj|and|assert|assert2|assert3|assigned|break|by|case|cat|catch|clear|cmpeq|cmpne|continue|declare|default|delete|diff|div|do|elif|else|end|eq|error|eval|exists|exit|for|forall|forward|fprintf|freeze|function|ge|gt|if|iload|import|in|intrinsic|is|join|le|load|local|lt|meet|mod|ne|not|notadj|notin|notsubset|or|print|printf|procedure|quit|random|read|readi|repeat|require|requirege|requirerange|restore|return|save|sdiff|select|subset|then|time|to|try|until|vprint|vprintf|vtime|when|where|while|xor)\b/, boolean: /\b(?:false|true)\b/, generator: { pattern: /\b[a-z_]\w*(?=\s*<)/i, alias: 'class-name', }, function: /\b[a-z_]\w*(?=\s*\()/i, number: { pattern: /(^|[^\w.]|\.\.)(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?(?:_[a-z]?)?(?=$|[^\w.]|\.\.)/, lookbehind: true, }, operator: /->|[-+*/^~!|#=]|:=|\.\./, punctuation: /[()[\]{}<>,;.:]/, }; aryrefslogtreecommitdiffstats
path: root/public/prism/prism-brightscript.js
blob: 724837408e0b5b015666e44163a55a8355ec1f50 (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
Prism.languages.brightscript = {
  comment: /(?:\brem|').*/i,
  'directive-statement': {
    pattern: /(^[\t ]*)#(?:const|else(?:[\t ]+if)?|end[\t ]+if|error|if).*/im,
    lookbehind: true,
    alias: 'property',
    inside: {
      'error-message': {
        pattern: /(^#error).+/,
        lookbehind: true,
      },
      directive: {
        pattern: /^#(?:const|else(?:[\t ]+if)?|end[\t ]+if|error|if)/,
        alias: 'keyword',
      },
      expression: {
        pattern: /[\s\S]+/,
        inside: null, // see below
      },
    },
  },
  property: {
    pattern: /([\r\n{,][\t ]*)(?:(?!\d)\w+|"(?:[^"\r\n]|"")*"(?!"))(?=[ \t]*:)/,
    lookbehind: true,
    greedy: true,
  },
  string: {
    pattern: /"(?:[^"\r\n]|"")*"(?!")/,
    greedy: true,
  },
  'class-name': {
    pattern: /(\bAs[\t ]+)\w+/i,
    lookbehind: true,
  },
  keyword:
    /\b(?:As|Dim|Each|Else|Elseif|End|Exit|For|Function|Goto|If|In|Print|Return|Step|Stop|Sub|Then|To|While)\b/i,
  boolean: /\b(?:false|true)\b/i,
  function: /\b(?!\d)\w+(?=[\t ]*\()/,
  number: /(?:\b\d+(?:\.\d+)?(?:[ed][+-]\d+)?|&h[a-f\d]+)\b[%&!#]?/i,
  operator: /--|\+\+|>>=?|<<=?|<>|[-+*/\\<>]=?|[:^=?]|\b(?:and|mod|not|or)\b/i,
  punctuation: /[.,;()[\]{}]/,
  constant: /\b(?:LINE_NUM)\b/i,
};

Prism.languages.brightscript['directive-statement'].inside.expression.inside =
  Prism.languages.brightscript;