{"version":3,"sources":["webpack:///./node_modules/monaco-editor/esm/vs/basic-languages/pascal/pascal.js"],"names":["__webpack_require__","r","__webpack_exports__","d","conf","language","wordPattern","comments","lineComment","blockComment","brackets","autoClosingPairs","open","close","surroundingPairs","folding","markers","start","RegExp","end","defaultToken","tokenPostfix","ignoreCase","token","keywords","typeKeywords","operators","symbols","tokenizer","root","cases","@keywords","@default","include","@operators","comment","string","bracket","next","whitespace"],"mappings":"kHAAAA,EAAAC,EAAAC,GAAAF,EAAAG,EAAAD,EAAA,yBAAAE,IAAAJ,EAAAG,EAAAD,EAAA,6BAAAG,IAKO,IAAAD,EAAA,CAEPE,YAAA,qFACAC,SAAA,CACAC,YAAA,KACAC,aAAA,KAAyB,MAEzBC,SAAA,CACA,KAAW,KACX,UACA,UACA,WAEAC,iBAAA,CACA,CAASC,KAAA,IAASC,MAAA,KAClB,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,MAETC,iBAAA,CACA,CAASF,KAAA,IAASC,MAAA,KAClB,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,KACT,CAASD,KAAA,IAAAC,MAAA,MAETE,QAAA,CACAC,QAAA,CACAC,MAAA,IAAAC,OAAA,sCACAC,IAAA,IAAAD,OAAA,8BAIOb,EAAA,CACPe,aAAA,GACAC,aAAA,UACAC,YAAA,EACAZ,SAAA,CACA,CAASE,KAAA,IAASC,MAAA,IAAYU,MAAA,mBAC9B,CAASX,KAAA,IAAAC,MAAA,IAAAU,MAAA,oBACT,CAASX,KAAA,IAAAC,MAAA,IAAAU,MAAA,yBACT,CAASX,KAAA,IAAAC,MAAA,IAAAU,MAAA,oBAETC,SAAA,CACA,0DACA,sDACA,iDACA,2DACA,2DACA,8DACA,2DACA,wDACA,yDACA,8DACA,uDACA,+DACA,yDACA,2DACA,oDACA,gEACA,qDAEAC,aAAA,CACA,sDACA,4BAEAC,UAAA,CACA,+CACA,iCAGAC,QAAA,wBAEAC,UAAA,CACAC,KAAA,CAEA,mBACAC,MAAA,CACAC,YAAA,CAAsCR,MAAA,cACtCS,WAAA,gBAIA,CAAaC,QAAA,eAEb,cAAiB,aACjB,iCACA,aACAH,MAAA,CACAI,aAAA,YACAF,WAAA,MAIA,4CACA,uBAAiC,cACjC,iBAEA,SAAgB,aAEhB,qCACA,yBAEA,sBACA,uBACA,oBAEAG,QAAA,CACA,YAAoB,WAEpB,MAAgB,kBAChB,QAAiB,YAEjBC,OAAA,CACA,qBACA,gCACA,MAAmBb,MAAA,eAAAc,QAAA,SAAAC,KAAA,UAEnBC,WAAA,CACA,uBACA,MAAgB,sBAChB","file":"js/chunk-2d0e6c86.07778a6a.js","sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n'use strict';\nexport var conf = {\n // the default separators except `@$`\n wordPattern: /(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)/g,\n comments: {\n lineComment: '//',\n blockComment: ['{', '}'],\n },\n brackets: [\n ['{', '}'],\n ['[', ']'],\n ['(', ')'],\n ['<', '>'],\n ],\n autoClosingPairs: [\n { open: '{', close: '}' },\n { open: '[', close: ']' },\n { open: '(', close: ')' },\n { open: '<', close: '>' },\n { open: '\\'', close: '\\'' },\n ],\n surroundingPairs: [\n { open: '{', close: '}' },\n { open: '[', close: ']' },\n { open: '(', close: ')' },\n { open: '<', close: '>' },\n { open: '\\'', close: '\\'' },\n ],\n folding: {\n markers: {\n start: new RegExp(\"^\\\\s*\\\\{\\\\$REGION(\\\\s\\\\'.*\\\\')?\\\\}\"),\n end: new RegExp(\"^\\\\s*\\\\{\\\\$ENDREGION\\\\}\")\n }\n }\n};\nexport var language = {\n defaultToken: '',\n tokenPostfix: '.pascal',\n ignoreCase: true,\n brackets: [\n { open: '{', close: '}', token: 'delimiter.curly' },\n { open: '[', close: ']', token: 'delimiter.square' },\n { open: '(', close: ')', token: 'delimiter.parenthesis' },\n { open: '<', close: '>', token: 'delimiter.angle' }\n ],\n keywords: [\n 'absolute', 'abstract', 'all', 'and_then', 'array', 'as', 'asm',\n 'attribute', 'begin', 'bindable', 'case', 'class', 'const',\n 'contains', 'default', 'div', 'else', 'end', 'except',\n 'exports', 'external', 'far', 'file', 'finalization', 'finally',\n 'forward', 'generic', 'goto', 'if', 'implements', 'import', 'in',\n 'index', 'inherited', 'initialization', 'interrupt', 'is', 'label',\n 'library', 'mod', 'module', 'name', 'near', 'not', 'object', 'of',\n 'on', 'only', 'operator', 'or_else', 'otherwise', 'override',\n 'package', 'packed', 'pow', 'private', 'program', 'protected',\n 'public', 'published', 'interface', 'implementation', 'qualified',\n 'read', 'record', 'resident', 'requires', 'resourcestring',\n 'restricted', 'segment', 'set', 'shl', 'shr', 'specialize', 'stored',\n 'then', 'threadvar', 'to', 'try', 'type', 'unit', 'uses', 'var',\n 'view', 'virtual', 'dynamic', 'overload', 'reintroduce', 'with',\n 'write', 'xor', 'true', 'false', 'procedure', 'function',\n 'constructor', 'destructor', 'property', 'break', 'continue', 'exit',\n 'abort', 'while', 'do', 'for', 'raise', 'repeat', 'until'\n ],\n typeKeywords: [\n 'boolean', 'double', 'byte', 'integer', 'shortint', 'char',\n 'longint', 'float', 'string'\n ],\n operators: [\n '=', '>', '<', '<=', '>=', '<>', ':', ':=', 'and', 'or',\n '+', '-', '*', '/', '@', '&', '^', '%'\n ],\n // we include these common regular expressions\n symbols: /[=><:@\\^&|+\\-*\\/\\^%]+/,\n // The main tokenizer for our languages\n tokenizer: {\n root: [\n // identifiers and keywords\n [/[a-zA-Z_][\\w]*/, {\n cases: {\n '@keywords': { token: 'keyword.$0' },\n '@default': 'identifier'\n }\n }],\n // whitespace\n { include: '@whitespace' },\n // delimiters and operators\n [/[{}()\\[\\]]/, '@brackets'],\n [/[<>](?!@symbols)/, '@brackets'],\n [/@symbols/, {\n cases: {\n '@operators': 'delimiter',\n '@default': ''\n }\n }],\n // numbers\n [/\\d*\\.\\d+([eE][\\-+]?\\d+)?/, 'number.float'],\n [/\\$[0-9a-fA-F]{1,16}/, 'number.hex'],\n [/\\d+/, 'number'],\n // delimiter: after number because of .\\d floats\n [/[;,.]/, 'delimiter'],\n // strings\n [/'([^'\\\\]|\\\\.)*$/, 'string.invalid'],\n [/'/, 'string', '@string'],\n // characters\n [/'[^\\\\']'/, 'string'],\n [/'/, 'string.invalid'],\n [/\\#\\d+/, 'string']\n ],\n comment: [\n [/[^\\*\\}]+/, 'comment'],\n //[/\\(\\*/, 'comment', '@push' ], // nested comment not allowed :-(\n [/\\}/, 'comment', '@pop'],\n [/[\\{]/, 'comment']\n ],\n string: [\n [/[^\\\\']+/, 'string'],\n [/\\\\./, 'string.escape.invalid'],\n [/'/, { token: 'string.quote', bracket: '@close', next: '@pop' }]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, 'white'],\n [/\\{/, 'comment', '@comment'],\n [/\\/\\/.*$/, 'comment'],\n ],\n },\n};\n"],"sourceRoot":""}