123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- /*!-----------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Version: 0.31.1(337587859b1c171314b40503171188b6cea6a32a)
- * Released under the MIT license
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
- *-----------------------------------------------------------------------------*/
- define("vs/basic-languages/apex/apex",[],()=>{
- var moduleExports = (() => {
- var __defProp = Object.defineProperty;
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
- var __export = (target, all) => {
- __markAsModule(target);
- for (var name in all)
- __defProp(target, name, { get: all[name], enumerable: true });
- };
- // src/basic-languages/apex/apex.ts
- var apex_exports = {};
- __export(apex_exports, {
- conf: () => conf,
- language: () => language
- });
- var conf = {
- wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,
- comments: {
- lineComment: "//",
- blockComment: ["/*", "*/"]
- },
- brackets: [
- ["{", "}"],
- ["[", "]"],
- ["(", ")"]
- ],
- autoClosingPairs: [
- { open: "{", close: "}" },
- { open: "[", close: "]" },
- { open: "(", close: ")" },
- { open: '"', close: '"' },
- { open: "'", close: "'" }
- ],
- surroundingPairs: [
- { open: "{", close: "}" },
- { open: "[", close: "]" },
- { open: "(", close: ")" },
- { open: '"', close: '"' },
- { open: "'", close: "'" },
- { open: "<", close: ">" }
- ],
- folding: {
- markers: {
- start: new RegExp("^\\s*//\\s*(?:(?:#?region\\b)|(?:<editor-fold\\b))"),
- end: new RegExp("^\\s*//\\s*(?:(?:#?endregion\\b)|(?:</editor-fold>))")
- }
- }
- };
- var keywords = [
- "abstract",
- "activate",
- "and",
- "any",
- "array",
- "as",
- "asc",
- "assert",
- "autonomous",
- "begin",
- "bigdecimal",
- "blob",
- "boolean",
- "break",
- "bulk",
- "by",
- "case",
- "cast",
- "catch",
- "char",
- "class",
- "collect",
- "commit",
- "const",
- "continue",
- "convertcurrency",
- "decimal",
- "default",
- "delete",
- "desc",
- "do",
- "double",
- "else",
- "end",
- "enum",
- "exception",
- "exit",
- "export",
- "extends",
- "false",
- "final",
- "finally",
- "float",
- "for",
- "from",
- "future",
- "get",
- "global",
- "goto",
- "group",
- "having",
- "hint",
- "if",
- "implements",
- "import",
- "in",
- "inner",
- "insert",
- "instanceof",
- "int",
- "interface",
- "into",
- "join",
- "last_90_days",
- "last_month",
- "last_n_days",
- "last_week",
- "like",
- "limit",
- "list",
- "long",
- "loop",
- "map",
- "merge",
- "native",
- "new",
- "next_90_days",
- "next_month",
- "next_n_days",
- "next_week",
- "not",
- "null",
- "nulls",
- "number",
- "object",
- "of",
- "on",
- "or",
- "outer",
- "override",
- "package",
- "parallel",
- "pragma",
- "private",
- "protected",
- "public",
- "retrieve",
- "return",
- "returning",
- "rollback",
- "savepoint",
- "search",
- "select",
- "set",
- "short",
- "sort",
- "stat",
- "static",
- "strictfp",
- "super",
- "switch",
- "synchronized",
- "system",
- "testmethod",
- "then",
- "this",
- "this_month",
- "this_week",
- "throw",
- "throws",
- "today",
- "tolabel",
- "tomorrow",
- "transaction",
- "transient",
- "trigger",
- "true",
- "try",
- "type",
- "undelete",
- "update",
- "upsert",
- "using",
- "virtual",
- "void",
- "volatile",
- "webservice",
- "when",
- "where",
- "while",
- "yesterday"
- ];
- var uppercaseFirstLetter = (lowercase) => lowercase.charAt(0).toUpperCase() + lowercase.substr(1);
- var keywordsWithCaseVariations = [];
- keywords.forEach((lowercase) => {
- keywordsWithCaseVariations.push(lowercase);
- keywordsWithCaseVariations.push(lowercase.toUpperCase());
- keywordsWithCaseVariations.push(uppercaseFirstLetter(lowercase));
- });
- var language = {
- defaultToken: "",
- tokenPostfix: ".apex",
- keywords: keywordsWithCaseVariations,
- operators: [
- "=",
- ">",
- "<",
- "!",
- "~",
- "?",
- ":",
- "==",
- "<=",
- ">=",
- "!=",
- "&&",
- "||",
- "++",
- "--",
- "+",
- "-",
- "*",
- "/",
- "&",
- "|",
- "^",
- "%",
- "<<",
- ">>",
- ">>>",
- "+=",
- "-=",
- "*=",
- "/=",
- "&=",
- "|=",
- "^=",
- "%=",
- "<<=",
- ">>=",
- ">>>="
- ],
- symbols: /[=><!~?:&|+\-*\/\^%]+/,
- escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
- digits: /\d+(_+\d+)*/,
- octaldigits: /[0-7]+(_+[0-7]+)*/,
- binarydigits: /[0-1]+(_+[0-1]+)*/,
- hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
- tokenizer: {
- root: [
- [
- /[a-z_$][\w$]*/,
- {
- cases: {
- "@keywords": { token: "keyword.$0" },
- "@default": "identifier"
- }
- }
- ],
- [
- /[A-Z][\w\$]*/,
- {
- cases: {
- "@keywords": { token: "keyword.$0" },
- "@default": "type.identifier"
- }
- }
- ],
- { include: "@whitespace" },
- [/[{}()\[\]]/, "@brackets"],
- [/[<>](?!@symbols)/, "@brackets"],
- [
- /@symbols/,
- {
- cases: {
- "@operators": "delimiter",
- "@default": ""
- }
- }
- ],
- [/@\s*[a-zA-Z_\$][\w\$]*/, "annotation"],
- [/(@digits)[eE]([\-+]?(@digits))?[fFdD]?/, "number.float"],
- [/(@digits)\.(@digits)([eE][\-+]?(@digits))?[fFdD]?/, "number.float"],
- [/(@digits)[fFdD]/, "number.float"],
- [/(@digits)[lL]?/, "number"],
- [/[;,.]/, "delimiter"],
- [/"([^"\\]|\\.)*$/, "string.invalid"],
- [/'([^'\\]|\\.)*$/, "string.invalid"],
- [/"/, "string", '@string."'],
- [/'/, "string", "@string.'"],
- [/'[^\\']'/, "string"],
- [/(')(@escapes)(')/, ["string", "string.escape", "string"]],
- [/'/, "string.invalid"]
- ],
- whitespace: [
- [/[ \t\r\n]+/, ""],
- [/\/\*\*(?!\/)/, "comment.doc", "@apexdoc"],
- [/\/\*/, "comment", "@comment"],
- [/\/\/.*$/, "comment"]
- ],
- comment: [
- [/[^\/*]+/, "comment"],
- [/\*\//, "comment", "@pop"],
- [/[\/*]/, "comment"]
- ],
- apexdoc: [
- [/[^\/*]+/, "comment.doc"],
- [/\*\//, "comment.doc", "@pop"],
- [/[\/*]/, "comment.doc"]
- ],
- string: [
- [/[^\\"']+/, "string"],
- [/@escapes/, "string.escape"],
- [/\\./, "string.escape.invalid"],
- [
- /["']/,
- {
- cases: {
- "$#==$S2": { token: "string", next: "@pop" },
- "@default": "string"
- }
- }
- ]
- ]
- }
- };
- return apex_exports;
- })();
- return moduleExports;
- });
|