prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
23 lines (22 loc) • 887 B
JavaScript
import { a as languages } from "../../core-8vQkh0Rd.js";
//#region src/prism/languages/agda.js
languages.agda = {
"comment": /\{-[^]*?(?:-\}|$)|--.*/,
"string": { pattern: /"(?:\\[^]|[^\\\n"])*"/g },
"punctuation": /[(){}⦃⦄.;@]/,
"class-name": {
pattern: /((?:data|record) +)\S+/,
lookbehind: true
},
"function": {
pattern: /(^[ ]*)(?!\s)[^\n:]+(?=:)/m,
lookbehind: true
},
"operator": {
pattern: /(^|\s)(?:[=|:∀→λ\\?_]|->)(?!\S)/,
lookbehind: true
},
"keyword": /\b(?:Set|abstract|constructor|data|eta-equality|field|forall|hiding|import|in|inductive|infix[lr]?|instance|let|macro|module|mutual|no-eta-equality|open|overlap|pattern|postulate|primitive|private|public|quote|quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|syntax|tactic|unquote|unquoteDecl|unquoteDef|using|variable|where|with)\b/
};
//#endregion
//# sourceMappingURL=agda.js.map