{"version":3,"sources":["webpack:///./node_modules/monaco-editor/esm/vs/basic-languages/kotlin/kotlin.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","keywords","operators","symbols","escapes","digits","octaldigits","binarydigits","hexdigits","tokenizer","root","cases","@keywords","token","@default","include","@operators","whitespace","comment","javadoc","string"],"mappings":"gHAAAA,EAAAC,EAAAC,GAAAF,EAAAG,EAAAD,EAAA,yBAAAE,IAAAJ,EAAAG,EAAAD,EAAA,6BAAAG,IAKO,IAAAD,EAAA,CAEPE,YAAA,qFACAC,SAAA,CACAC,YAAA,KACAC,aAAA,aAEAC,SAAA,CACA,KAAW,KACX,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,KACT,CAASD,KAAA,IAAAC,MAAA,MAETE,QAAA,CACAC,QAAA,CACAC,MAAA,IAAAC,OAAA,sDACAC,IAAA,IAAAD,OAAA,2DAIOb,EAAA,CACPe,aAAA,GACAC,aAAA,MACAC,SAAA,CACA,2EACA,6EACA,wEACA,0EACA,gFACA,iFACA,6EACA,4EACA,oDAEAC,UAAA,CACA,4CACA,6CACA,+CACA,+BAA2C,SAG3CC,QAAA,wBACAC,QAAA,wEACAC,OAAA,cACAC,YAAA,oBACAC,aAAA,oBACAC,UAAA,iCAEAC,UAAA,CACAC,KAAA,CAEA,mCAEA,qBACAC,MAAA,CACAC,YAAA,CAAsCC,MAAA,cACtCC,WAAA,gBAIA,CAAaC,QAAA,eAEb,cAAiB,aACjB,iCACA,aACAJ,MAAA,CACAK,aAAA,YACAF,WAAA,MAIA,wCAEA,0DACA,qEACA,wCACA,wCACA,8CACA,mCACA,4BAEA,SAAgB,aAEhB,qCACA,yBAEA,sBACA,yDACA,wBAEAG,WAAA,CACA,kBACA,0CACA,8BACA,uBAEAC,QAAA,CACA,sBACA,0BACA,qBAGAC,QAAA,CACA,0BAEA,+BACA,8BACA,yBAEAC,OAAA,CACA,qBACA,6BACA,gCACA","file":"js/chunk-2d221814.94a5b66e.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 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 { open: '<', close: '>' },\n ],\n folding: {\n markers: {\n start: new RegExp(\"^\\\\s*//\\\\s*(?:(?:#?region\\\\b)|(?:))\")\n }\n }\n};\nexport var language = {\n defaultToken: '',\n tokenPostfix: '.kt',\n keywords: [\n 'as', 'as?', 'break', 'class', 'continue', 'do', 'else', 'false', 'for', 'fun', 'if',\n 'in', '!in', 'interface', 'is', '!is', 'null', 'object', 'package', 'return', 'super',\n 'this', 'throw', 'true', 'try', 'typealias', 'val', 'var', 'when', 'while', 'by',\n 'catch', 'constructor', 'delegate', 'dynamic', 'field', 'file', 'finally', 'get',\n 'import', 'init', 'param', 'property', 'receiver', 'set', 'setparam', 'where', 'actual',\n 'abstract', 'annotation', 'companion', 'const', 'crossinline', 'data', 'enum', 'expect',\n 'external', 'final', 'infix', 'inline', 'inner', 'internal', 'lateinit', 'noinline',\n 'open', 'operator', 'out', 'override', 'private', 'protected', 'public', 'reified',\n 'sealed', 'suspend', 'tailrec', 'vararg', 'field', 'it'\n ],\n operators: [\n '+', '-', '*', '/', '%', '=', '+=', '-=', '*=', '/=',\n '%=', '++', '--', '&&', '||', '!', '==', '!=', '===',\n '!==', '>', '<', '<=', '>=', '[', ']', '!!', '?.', '?:',\n '::', '..', ':', '?', '->', '@', ';', '$', '_'\n ],\n // we include these common regular expressions\n symbols: /[=>](?!@symbols)/, '@brackets'],\n [/@symbols/, {\n cases: {\n '@operators': 'delimiter',\n '@default': ''\n }\n }],\n // @ annotations.\n [/@\\s*[a-zA-Z_\\$][\\w\\$]*/, 'annotation'],\n // numbers\n [/(@digits)[eE]([\\-+]?(@digits))?[fFdD]?/, 'number.float'],\n [/(@digits)\\.(@digits)([eE][\\-+]?(@digits))?[fFdD]?/, 'number.float'],\n [/0[xX](@hexdigits)[Ll]?/, 'number.hex'],\n [/0(@octaldigits)[Ll]?/, 'number.octal'],\n [/0[bB](@binarydigits)[Ll]?/, 'number.binary'],\n [/(@digits)[fFdD]/, 'number.float'],\n [/(@digits)[lL]?/, 'number'],\n // delimiter: after number because of .\\d floats\n [/[;,.]/, 'delimiter'],\n // strings\n [/\"([^\"\\\\]|\\\\.)*$/, 'string.invalid'],\n [/\"/, 'string', '@string'],\n // characters\n [/'[^\\\\']'/, 'string'],\n [/(')(@escapes)(')/, ['string', 'string.escape', 'string']],\n [/'/, 'string.invalid']\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ''],\n [/\\/\\*\\*(?!\\/)/, 'comment.doc', '@javadoc'],\n [/\\/\\*/, 'comment', '@comment'],\n [/\\/\\/.*$/, 'comment'],\n ],\n comment: [\n [/[^\\/*]+/, 'comment'],\n [/\\*\\//, 'comment', '@pop'],\n [/[\\/*]/, 'comment']\n ],\n //Identical copy of comment above, except for the addition of .doc\n javadoc: [\n [/[^\\/*]+/, 'comment.doc'],\n // [/\\/\\*/, 'comment.doc', '@push' ], // nested comment not allowed :-(\n [/\\/\\*/, 'comment.doc.invalid'],\n [/\\*\\//, 'comment.doc', '@pop'],\n [/[\\/*]/, 'comment.doc']\n ],\n string: [\n [/[^\\\\\"]+/, 'string'],\n [/@escapes/, 'string.escape'],\n [/\\\\./, 'string.escape.invalid'],\n [/\"/, 'string', '@pop']\n ],\n },\n};\n"],"sourceRoot":""}