{"version":3,"sources":["webpack:///./node_modules/monaco-editor/esm/vs/basic-languages/fsharp/fsharp.js"],"names":["__webpack_require__","r","__webpack_exports__","d","conf","language","comments","lineComment","blockComment","brackets","autoClosingPairs","open","close","surroundingPairs","folding","markers","start","RegExp","end","defaultToken","tokenPostfix","keywords","symbols","escapes","integersuffix","floatsuffix","tokenizer","root","cases","@keywords","token","@default","include","next","whitespace","comment","string","$#==$S2","litstring"],"mappings":"gHAAAA,EAAAC,EAAAC,GAAAF,EAAAG,EAAAD,EAAA,yBAAAE,IAAAJ,EAAAG,EAAAD,EAAA,6BAAAG,IAKO,IAAAD,EAAA,CACPE,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,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,0DACAC,IAAA,IAAAD,OAAA,mEAIOZ,EAAA,CACPc,aAAA,GACAC,aAAA,MACAC,SAAA,CACA,+BACA,8BACA,8BACA,mCACA,6BACA,kCACA,6BACA,uCACA,iCACA,mCACA,uCACA,uCACA,sCACA,0CACA,yCACA,iCACA,0CACA,2CACA,wCACA,+BACA,4BACA,kCACA,+BAGAC,QAAA,4BACAC,QAAA,wEACAC,cAAA,iBACAC,YAAA,UAEAC,UAAA,CACAC,KAAA,CAEA,iBACAC,MAAA,CACAC,YAAA,CAAsCC,MAAA,cACtCC,WAAA,gBAIA,CAAaC,QAAA,eAEb,0BAEA,gCAEA,cAAiB,aACjB,iCACA,yBAEA,wDACA,0DACA,oCACA,gDACA,0CACA,iCAEA,SAAgB,aAEhB,qCACA,+BACA,2BAEA,QAAqBF,MAAA,eAAAG,KAAA,eAErB,wBACA,yDACA,wBAEAC,WAAA,CACA,kBACA,oCACA,uBAEAC,QAAA,CACA,qBACA,0BACA,iBACA,qBACA,kBAEAC,OAAA,CACA,qBACA,6BACA,gCACA,cACAR,MAAA,CACAS,UAAA,CAAoCP,MAAA,SAAAG,KAAA,QACpCF,WAAA,aAIAO,UAAA,CACA,mBACA,uBACA,MAAmBR,MAAA,eAAAG,KAAA","file":"js/chunk-2d221a34.8637392b.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 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 ],\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*//\\\\s*#region\\\\b|^\\\\s*\\\\(\\\\*\\\\s*#region(.*)\\\\*\\\\)\"),\n end: new RegExp(\"^\\\\s*//\\\\s*#endregion\\\\b|^\\\\s*\\\\(\\\\*\\\\s*#endregion\\\\s*\\\\*\\\\)\")\n }\n }\n};\nexport var language = {\n defaultToken: '',\n tokenPostfix: '.fs',\n keywords: [\n 'abstract', 'and', 'atomic', 'as',\n 'assert', 'asr', 'base', 'begin',\n 'break', 'checked', 'component',\n 'const', 'constraint', 'constructor',\n 'continue', 'class', 'default',\n 'delegate', 'do', 'done', 'downcast',\n 'downto', 'elif', 'else', 'end',\n 'exception', 'eager', 'event', 'external',\n 'extern', 'false', 'finally', 'for',\n 'fun', 'function', 'fixed', 'functor',\n 'global', 'if', 'in', 'include', 'inherit',\n 'inline', 'interface', 'internal', 'land',\n 'lor', 'lsl', 'lsr', 'lxor', 'lazy', 'let',\n 'match', 'member', 'mod', 'module', 'mutable',\n 'namespace', 'method', 'mixin', 'new', 'not',\n 'null', 'of', 'open', 'or', 'object',\n 'override', 'private', 'parallel', 'process',\n 'protected', 'pure', 'public', 'rec', 'return',\n 'static', 'sealed', 'struct', 'sig', 'then',\n 'to', 'true', 'tailcall', 'trait',\n 'try', 'type', 'upcast', 'use',\n 'val', 'void', 'virtual', 'volatile',\n 'when', 'while', 'with', 'yield'\n ],\n // we include these common regular expressions\n symbols: /[=>].\n [/\\[<.*>\\]/, 'annotation'],\n // Preprocessor directive\n [/^#(if|else|endif)/, 'keyword'],\n // delimiters and operators\n [/[{}()\\[\\]]/, '@brackets'],\n [/[<>](?!@symbols)/, '@brackets'],\n [/@symbols/, 'delimiter'],\n // numbers\n [/\\d*\\d+[eE]([\\-+]?\\d+)?(@floatsuffix)/, 'number.float'],\n [/\\d*\\.\\d+([eE][\\-+]?\\d+)?(@floatsuffix)/, 'number.float'],\n [/0x[0-9a-fA-F]+LF/, 'number.float'],\n [/0x[0-9a-fA-F]+(@integersuffix)/, 'number.hex'],\n [/0b[0-1]+(@integersuffix)/, 'number.bin'],\n [/\\d+(@integersuffix)/, 'number'],\n // delimiter: after number because of .\\d floats\n [/[;,.]/, 'delimiter'],\n // strings\n [/\"([^\"\\\\]|\\\\.)*$/, 'string.invalid'],\n [/\"\"\"/, 'string', '@string.\"\"\"'],\n [/\"/, 'string', '@string.\"'],\n // literal string\n [/\\@\"/, { token: 'string.quote', next: '@litstring' }],\n // characters\n [/'[^\\\\']'B?/, 'string'],\n [/(')(@escapes)(')/, ['string', 'string.escape', 'string']],\n [/'/, 'string.invalid']\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ''],\n [/\\(\\*(?!\\))/, 'comment', '@comment'],\n [/\\/\\/.*$/, 'comment'],\n ],\n comment: [\n [/[^*(]+/, 'comment'],\n [/\\*\\)/, 'comment', '@pop'],\n [/\\*/, 'comment'],\n [/\\(\\*\\)/, 'comment'],\n [/\\(/, 'comment']\n ],\n string: [\n [/[^\\\\\"]+/, 'string'],\n [/@escapes/, 'string.escape'],\n [/\\\\./, 'string.escape.invalid'],\n [/(\"\"\"|\"B?)/, {\n cases: {\n '$#==$S2': { token: 'string', next: '@pop' },\n '@default': 'string'\n }\n }]\n ],\n litstring: [\n [/[^\"]+/, 'string'],\n [/\"\"/, 'string.escape'],\n [/\"/, { token: 'string.quote', next: '@pop' }]\n ],\n },\n};\n"],"sourceRoot":""}