thp-web/static/js/prism.thp.js

25 lines
931 B
JavaScript
Raw Normal View History

2023-10-02 01:41:38 +00:00
Prism.languages.thp = {
"comment": [
{
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
lookbehind: true,
greedy: true,
},
{
pattern: /(^|[^\\:])\/\/.*/,
lookbehind: true,
greedy: true,
},
],
"string": {
pattern: /(["])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
greedy: true,
},
2023-10-24 01:39:34 +00:00
"keyword": /\b(?:static|const|enum|loop|use|break|catch|continue|do|else|finally|for|fun|if|in|fn|nil|return|throw|try|while|val|var|type|match|with|of|abstract|class|interface|private|pub|obj|override|open)\b/,
2023-10-02 01:41:38 +00:00
"number": /\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,
"operator": /[<>]=?|[!=]=?=?|--?|\$|\+\+?|&&?|\|\|?|[?*/~^%]/,
"punctuation": /[{}[\];(),.]/,
"boolean": /\b(?:false|true)\b/,
2023-10-05 12:56:34 +00:00
"class-name": /\b[A-Z][a-zA-Z_0-9]*\b/,
2023-10-02 01:41:38 +00:00
"variable": /\b[a-z_0-9][a-zA-Z_0-9]+:/,
};