antosdk-apps/MonacoCore/bundle/node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js.bundle.js
2021-04-19 15:08:15 +02:00

22 lines
10 KiB
JavaScript

/*
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js"],{
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/dart/dart.js":
/*!************************************************************************!*\
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/dart/dart.js ***!
\************************************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: '//',\r\n blockComment: ['/*', '*/']\r\n },\r\n brackets: [\r\n ['{', '}'],\r\n ['[', ']'],\r\n ['(', ')']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: \"'\", close: \"'\", notIn: ['string', 'comment'] },\r\n { open: '\"', close: '\"', notIn: ['string'] },\r\n { open: '`', close: '`', notIn: ['string', 'comment'] },\r\n { open: '/**', close: ' */', notIn: ['string'] }\r\n ],\r\n surroundingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '<', close: '>' },\r\n { open: \"'\", close: \"'\" },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: '`', close: '`' }\r\n ],\r\n folding: {\r\n markers: {\r\n start: /^\\s*\\s*#?region\\b/,\r\n end: /^\\s*\\s*#?endregion\\b/\r\n }\r\n }\r\n};\r\nvar language = {\r\n defaultToken: 'invalid',\r\n tokenPostfix: '.dart',\r\n keywords: [\r\n 'abstract',\r\n 'dynamic',\r\n 'implements',\r\n 'show',\r\n 'as',\r\n 'else',\r\n 'import',\r\n 'static',\r\n 'assert',\r\n 'enum',\r\n 'in',\r\n 'super',\r\n 'async',\r\n 'export',\r\n 'interface',\r\n 'switch',\r\n 'await',\r\n 'extends',\r\n 'is',\r\n 'sync',\r\n 'break',\r\n 'external',\r\n 'library',\r\n 'this',\r\n 'case',\r\n 'factory',\r\n 'mixin',\r\n 'throw',\r\n 'catch',\r\n 'false',\r\n 'new',\r\n 'true',\r\n 'class',\r\n 'final',\r\n 'null',\r\n 'try',\r\n 'const',\r\n 'finally',\r\n 'on',\r\n 'typedef',\r\n 'continue',\r\n 'for',\r\n 'operator',\r\n 'var',\r\n 'covariant',\r\n 'Function',\r\n 'part',\r\n 'void',\r\n 'default',\r\n 'get',\r\n 'rethrow',\r\n 'while',\r\n 'deferred',\r\n 'hide',\r\n 'return',\r\n 'with',\r\n 'do',\r\n 'if',\r\n 'set',\r\n 'yield'\r\n ],\r\n typeKeywords: ['int', 'double', 'String', 'bool'],\r\n operators: [\r\n '+',\r\n '-',\r\n '*',\r\n '/',\r\n '~/',\r\n '%',\r\n '++',\r\n '--',\r\n '==',\r\n '!=',\r\n '>',\r\n '<',\r\n '>=',\r\n '<=',\r\n '=',\r\n '-=',\r\n '/=',\r\n '%=',\r\n '>>=',\r\n '^=',\r\n '+=',\r\n '*=',\r\n '~/=',\r\n '<<=',\r\n '&=',\r\n '!=',\r\n '||',\r\n '&&',\r\n '&',\r\n '|',\r\n '^',\r\n '~',\r\n '<<',\r\n '>>',\r\n '!',\r\n '>>>',\r\n '??',\r\n '?',\r\n ':',\r\n '|='\r\n ],\r\n // we include these common regular expressions\r\n symbols: /[=><!~?:&|+\\-*\\/\\^%]+/,\r\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\r\n digits: /\\d+(_+\\d+)*/,\r\n octaldigits: /[0-7]+(_+[0-7]+)*/,\r\n binarydigits: /[0-1]+(_+[0-1]+)*/,\r\n hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,\r\n regexpctl: /[(){}\\[\\]\\$\\^|\\-*+?\\.]/,\r\n regexpesc: /\\\\(?:[bBdDfnrstvwWn0\\\\\\/]|@regexpctl|c[A-Z]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4})/,\r\n // The main tokenizer for our languages\r\n tokenizer: {\r\n root: [[/[{}]/, 'delimiter.bracket'], { include: 'common' }],\r\n common: [\r\n // identifiers and keywords\r\n [\r\n /[a-z_$][\\w$]*/,\r\n {\r\n cases: {\r\n '@typeKeywords': 'type.identifier',\r\n '@keywords': 'keyword',\r\n '@default': 'identifier'\r\n }\r\n }\r\n ],\r\n [/[A-Z_$][\\w\\$]*/, 'type.identifier'],\r\n // [/[A-Z][\\w\\$]*/, 'identifier'],\r\n // whitespace\r\n { include: '@whitespace' },\r\n // regular expression: ensure it is terminated before beginning (otherwise it is an opeator)\r\n [\r\n /\\/(?=([^\\\\\\/]|\\\\.)+\\/([gimsuy]*)(\\s*)(\\.|;|,|\\)|\\]|\\}|$))/,\r\n { token: 'regexp', bracket: '@open', next: '@regexp' }\r\n ],\r\n // @ annotations.\r\n [/@[a-zA-Z]+/, 'annotation'],\r\n // variable\r\n // delimiters and operators\r\n [/[()\\[\\]]/, '@brackets'],\r\n [/[<>](?!@symbols)/, '@brackets'],\r\n [/!(?=([^=]|$))/, 'delimiter'],\r\n [\r\n /@symbols/,\r\n {\r\n cases: {\r\n '@operators': 'delimiter',\r\n '@default': ''\r\n }\r\n }\r\n ],\r\n // numbers\r\n [/(@digits)[eE]([\\-+]?(@digits))?/, 'number.float'],\r\n [/(@digits)\\.(@digits)([eE][\\-+]?(@digits))?/, 'number.float'],\r\n [/0[xX](@hexdigits)n?/, 'number.hex'],\r\n [/0[oO]?(@octaldigits)n?/, 'number.octal'],\r\n [/0[bB](@binarydigits)n?/, 'number.binary'],\r\n [/(@digits)n?/, 'number'],\r\n // delimiter: after number because of .\\d floats\r\n [/[;,.]/, 'delimiter'],\r\n // strings\r\n [/\"([^\"\\\\]|\\\\.)*$/, 'string.invalid'],\r\n [/'([^'\\\\]|\\\\.)*$/, 'string.invalid'],\r\n [/\"/, 'string', '@string_double'],\r\n [/'/, 'string', '@string_single']\r\n // [/[a-zA-Z]+/, \"variable\"]\r\n ],\r\n whitespace: [\r\n [/[ \\t\\r\\n]+/, ''],\r\n [/\\/\\*\\*(?!\\/)/, 'comment.doc', '@jsdoc'],\r\n [/\\/\\*/, 'comment', '@comment'],\r\n [/\\/\\/\\/.*$/, 'comment.doc'],\r\n [/\\/\\/.*$/, 'comment']\r\n ],\r\n comment: [\r\n [/[^\\/*]+/, 'comment'],\r\n [/\\*\\//, 'comment', '@pop'],\r\n [/[\\/*]/, 'comment']\r\n ],\r\n jsdoc: [\r\n [/[^\\/*]+/, 'comment.doc'],\r\n [/\\*\\//, 'comment.doc', '@pop'],\r\n [/[\\/*]/, 'comment.doc']\r\n ],\r\n // We match regular expression quite precisely\r\n regexp: [\r\n [\r\n /(\\{)(\\d+(?:,\\d*)?)(\\})/,\r\n ['regexp.escape.control', 'regexp.escape.control', 'regexp.escape.control']\r\n ],\r\n [\r\n /(\\[)(\\^?)(?=(?:[^\\]\\\\\\/]|\\\\.)+)/,\r\n ['regexp.escape.control', { token: 'regexp.escape.control', next: '@regexrange' }]\r\n ],\r\n [/(\\()(\\?:|\\?=|\\?!)/, ['regexp.escape.control', 'regexp.escape.control']],\r\n [/[()]/, 'regexp.escape.control'],\r\n [/@regexpctl/, 'regexp.escape.control'],\r\n [/[^\\\\\\/]/, 'regexp'],\r\n [/@regexpesc/, 'regexp.escape'],\r\n [/\\\\\\./, 'regexp.invalid'],\r\n [\r\n /(\\/)([gimsuy]*)/,\r\n [{ token: 'regexp', bracket: '@close', next: '@pop' }, 'keyword.other']\r\n ]\r\n ],\r\n regexrange: [\r\n [/-/, 'regexp.escape.control'],\r\n [/\\^/, 'regexp.invalid'],\r\n [/@regexpesc/, 'regexp.escape'],\r\n [/[^\\]]/, 'regexp'],\r\n [\r\n /\\]/,\r\n {\r\n token: 'regexp.escape.control',\r\n next: '@pop',\r\n bracket: '@close'\r\n }\r\n ]\r\n ],\r\n string_double: [\r\n [/[^\\\\\"\\$]+/, 'string'],\r\n [/[^\\\\\"]+/, 'string'],\r\n [/@escapes/, 'string.escape'],\r\n [/\\\\./, 'string.escape.invalid'],\r\n [/\"/, 'string', '@pop'],\r\n [/\\$\\w+/, 'identifier']\r\n ],\r\n string_single: [\r\n [/[^\\\\'\\$]+/, 'string'],\r\n [/@escapes/, 'string.escape'],\r\n [/\\\\./, 'string.escape.invalid'],\r\n [/'/, 'string', '@pop'],\r\n [/\\$\\w+/, 'identifier']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/dart/dart.js?");
/***/ })
}]);