antosdk-apps/MonacoCore/bundle/node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js.bundle.js

22 lines
8.4 KiB
JavaScript
Raw Normal View History

2022-06-03 19:30:11 +02:00
"use strict";
2021-04-19 15:08:15 +02:00
/*
* 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/).
*/
2022-06-03 19:30:11 +02:00
(self["webpackChunkmonanco_wpack"] = self["webpackChunkmonanco_wpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js"],{
2021-04-19 15:08:15 +02:00
/***/ "./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__) => {
2022-06-03 19:30:11 +02:00
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/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/dart/dart.ts\nvar 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: \"'\", notIn: [\"string\", \"comment\"] },\n { open: '\"', close: '\"', notIn: [\"string\"] },\n { open: \"`\", close: \"`\", notIn: [\"string\", \"comment\"] },\n { open: \"/**\", close: \" */\", notIn: [\"string\"] }\n ],\n surroundingPairs: [\n { open: \"{\", close: \"}\" },\n { open: \"[\", close: \"]\" },\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: /^\\s*\\s*#?region\\b/,\n end: /^\\s*\\s*#?endregion\\b/\n }\n }\n};\nvar language = {\n defaultToken: \"invalid\",\n tokenPostfix: \".dart\",\n keywords: [\n \"abstract\",\n \"dynamic\",\n \"implements\",\n \"show\",\n \"as\",\n \"else\",\n \"import\",\n \"static\",\n \"assert\",\n \"enum\",\n \"in\",\n \"super\",\n \"async\",\n \"export\",\n \"interface\",\n \"switch\",\n \"await\",\n \"extends\",\n \"is\",\n \"sync\",\n \"break\",\n \"external\",\n \"library\",\n \"this\",\n \"case\",\n \"factory\",\n \"mixin\",\n \"throw\",\n \"catch\",\n \"false\",\n \"new\",\n \"true\",\n \"class\",\n \"final\",\n \"null\",\n \"try\",\n \"const\",\n \"finally\",\n \"on\",\n \"typedef\",\n \"continue\",\n \"for\",\n \"operator\",\n \"var\",\n \"covariant\",\n \"Function\",\n \"part\",\n \"void\",\n \"default\",\n \"get\",\n \"rethrow\",\n \"while\",\n \"deferred\",\n \"hide\",\n \"return\",\n \"with\",\n \"do\",\n \"if\",\n \"set\",\n \"yield\"\n ],\n typeKeywords: [\"int\", \"double\", \"String\", \"bool\"],\n operators: [\n \"+\",\n \"-\",\n \"*\",\n \"/\",\n \"~/\",\n \"%\",\n \"++\",\n \"--\",\n \"==\",\n \"!=\",\n \">\",\n \"<\",\n \">=\",\n \"<=\",\n \"=\",\n \"-=\",\n \"/=\",\n \"%=\",\n \">>=\",\n \"^=\",\n \"+=\",\n \"*=\",\n \"~/=\",\n \"<<=\",\n \"&=\",\n \"!=\",\n \"||\",\n \"&&\",\n \"&\",\n \"|\",\n \"^\",\n \"~\",\n \"<<\",\n \">>\",\n \"!\",\n \">>>\",\n \"??\",\n \"?\",\n \":\",\n \"|=\"\n ],\n symbols: /[=><!~?:&|+\\-*\\/\\^%]+/,\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n digits: /\\d+(_+\\d+)*/,\n octaldigits: /[0-7]+(_+[0-7]+)*/,\n binarydigits: /[0-1]+(_+[0-1]+)*/,\n hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,\n regexpctl: /[(){}\\[\\]\\$\\^|\\-*+?\\.]/,\n regexpesc: /\\\\(?:[bBdDfnrstvwWn0\\\\\\/]|@regexpctl|c[A-Z]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4})/,\n tokenizer: {\n root: [[/[{}]/, \"delimiter.bracket\"], { include: \"common\" }],\n common: [\n [\n /[a-z_$][\\w$]*/,\n {\n cases: {\n \"@typeKeywords\": \"type.identifier\",\n \"@keywords\": \"keyword\",\n \"@default\": \"iden
2021-04-19 15:08:15 +02:00
/***/ })
}]);