{"version":3,"sources":["webpack:///./node_modules/monaco-editor/esm/vs/basic-languages/java/java.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":"kHAAAA,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,QACAC,SAAA,CACA,8DACA,8DACA,gEACA,sEACA,iEACA,gEACA,oEAEAC,UAAA,CACA,4BACA,wCACA,qCACA,yCACA,8BAGAC,QAAA,wBACAC,QAAA,wEACAC,OAAA,cACAC,YAAA,oBACAC,aAAA,oBACAC,UAAA,iCAEAC,UAAA,CACAC,KAAA,CAEA,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,sBAGA,0BACA,qBAGAC,QAAA,CACA,0BAEA,+BACA,8BACA,yBAEAC,OAAA,CACA,qBACA,6BACA,gCACA","file":"js/chunk-2d0a43df.3f172ac8.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: '.java',\n keywords: [\n 'abstract', 'continue', 'for', 'new', 'switch', 'assert', 'default',\n 'goto', 'package', 'synchronized', 'boolean', 'do', 'if', 'private',\n 'this', 'break', 'double', 'implements', 'protected', 'throw', 'byte',\n 'else', 'import', 'public', 'throws', 'case', 'enum', 'instanceof', 'return',\n 'transient', 'catch', 'extends', 'int', 'short', 'try', 'char', 'final',\n 'interface', 'static', 'void', 'class', 'finally', 'long', 'strictfp',\n 'volatile', 'const', 'float', 'native', 'super', 'while', 'true', 'false'\n ],\n operators: [\n '=', '>', '<', '!', '~', '?', ':',\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', '@push' ], // nested comment not allowed :-(\n // [/\\/\\*/, 'comment.invalid' ], // this breaks block comments in the shape of /* //*/\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":""}