sterzycom/assets/js/components/prism-oz.js
2019-01-25 13:45:36 +01:00

25 lines
No EOL
896 B
JavaScript
Executable file

Prism.languages.oz = {
'comment': /\/\*[\s\S]*?\*\/|%.*/,
'string': {
pattern: /"(?:[^"\\]|\\[\s\S])*"/,
greedy: true
},
'atom': {
pattern: /'(?:[^'\\]|\\.)*'/,
greedy: true,
alias: 'builtin'
},
'keyword': /[$_]|\[\]|\b(?:at|attr|case|catch|choice|class|cond|declare|define|dis|else(?:case|if)?|end|export|fail|false|feat|finally|from|fun|functor|if|import|in|local|lock|meth|nil|not|of|or|prepare|proc|prop|raise|require|self|skip|then|thread|true|try|unit)\b/,
'function': [
/[a-z][A-Za-z\d]*(?=\()/,
{
pattern: /(\{)[A-Z][A-Za-z\d]*/,
lookbehind: true
}
],
'number': /\b(?:0[bx][\da-f]+|\d+\.?\d*(?:e~?\d+)?\b)|&(?:[^\\]|\\(?:\d{3}|.))/i,
'variable': /\b[A-Z][A-Za-z\d]*|`(?:[^`\\]|\\.)+`/,
'attr-name': /\w+(?=:)/,
'operator': /:(?:=|::?)|<[-:=]?|=(?:=|<?:?)|>=?:?|\\=:?|!!?|[|#+\-*\/,~^@]|\b(?:andthen|div|mod|orelse)\b/,
'punctuation': /[\[\](){}.:;?]/
};