antosdk-apps/MonacoCore/bundle/node_modules_monaco-editor_esm_vs_basic-languages_tcl_tcl_js.bundle.js
2022-06-03 19:30:11 +02:00

22 lines
7.4 KiB
JavaScript

"use strict";
/*
* 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["webpackChunkmonanco_wpack"] = self["webpackChunkmonanco_wpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_tcl_tcl_js"],{
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/tcl/tcl.js":
/*!**********************************************************************!*\
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/tcl/tcl.js ***!
\**********************************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
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/tcl/tcl.ts\nvar conf = {\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 ]\n};\nvar language = {\n tokenPostfix: \".tcl\",\n specialFunctions: [\n \"set\",\n \"unset\",\n \"rename\",\n \"variable\",\n \"proc\",\n \"coroutine\",\n \"foreach\",\n \"incr\",\n \"append\",\n \"lappend\",\n \"linsert\",\n \"lreplace\"\n ],\n mainFunctions: [\n \"if\",\n \"then\",\n \"elseif\",\n \"else\",\n \"case\",\n \"switch\",\n \"while\",\n \"for\",\n \"break\",\n \"continue\",\n \"return\",\n \"package\",\n \"namespace\",\n \"catch\",\n \"exit\",\n \"eval\",\n \"expr\",\n \"uplevel\",\n \"upvar\"\n ],\n builtinFunctions: [\n \"file\",\n \"info\",\n \"concat\",\n \"join\",\n \"lindex\",\n \"list\",\n \"llength\",\n \"lrange\",\n \"lsearch\",\n \"lsort\",\n \"split\",\n \"array\",\n \"parray\",\n \"binary\",\n \"format\",\n \"regexp\",\n \"regsub\",\n \"scan\",\n \"string\",\n \"subst\",\n \"dict\",\n \"cd\",\n \"clock\",\n \"exec\",\n \"glob\",\n \"pid\",\n \"pwd\",\n \"close\",\n \"eof\",\n \"fblocked\",\n \"fconfigure\",\n \"fcopy\",\n \"fileevent\",\n \"flush\",\n \"gets\",\n \"open\",\n \"puts\",\n \"read\",\n \"seek\",\n \"socket\",\n \"tell\",\n \"interp\",\n \"after\",\n \"auto_execok\",\n \"auto_load\",\n \"auto_mkindex\",\n \"auto_reset\",\n \"bgerror\",\n \"error\",\n \"global\",\n \"history\",\n \"load\",\n \"source\",\n \"time\",\n \"trace\",\n \"unknown\",\n \"unset\",\n \"update\",\n \"vwait\",\n \"winfo\",\n \"wm\",\n \"bind\",\n \"event\",\n \"pack\",\n \"place\",\n \"grid\",\n \"font\",\n \"bell\",\n \"clipboard\",\n \"destroy\",\n \"focus\",\n \"grab\",\n \"lower\",\n \"option\",\n \"raise\",\n \"selection\",\n \"send\",\n \"tk\",\n \"tkwait\",\n \"tk_bisque\",\n \"tk_focusNext\",\n \"tk_focusPrev\",\n \"tk_focusFollowsMouse\",\n \"tk_popup\",\n \"tk_setPalette\"\n ],\n symbols: /[=><!~?:&|+\\-*\\/\\^%]+/,\n brackets: [\n { open: \"(\", close: \")\", token: \"delimiter.parenthesis\" },\n { open: \"{\", close: \"}\", token: \"delimiter.curly\" },\n { open: \"[\", close: \"]\", token: \"delimiter.square\" }\n ],\n escapes: /\\\\(?:[abfnrtv\\\\\"'\\[\\]\\{\\};\\$]|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n variables: /(?:\\$+(?:(?:\\:\\:?)?[a-zA-Z_]\\w*)+)/,\n tokenizer: {\n root: [\n [\n /[a-zA-Z_]\\w*/,\n {\n cases: {\n \"@specialFunctions\": {\n token: \"keyword.flow\",\n next: \"@specialFunc\"\n },\n \"@mainFunctions\": \"keyword\",\n \"@builtinFunctions\": \"variable\",\n \"@default\": \"operator.scss\"\n }\n }\n ],\n [/\\s+\\-+(?!\\d|\\.)\\w*|{\\*}/, \"metatag\"],\n { include: \"@whitespace\" },\n [/[{}()\\[\\]]/, \"@brackets\"],\n [/@symbols/, \"operator\"],\n [/\\$+(?:\\:\\:)?\\{/, { token: \"identifier\", next: \"@nestedVariable\" }],\n [/@variables/, \"type.identifier\"],\n [/\\.(?!\\d|\\.)[\\w\\-]*/, \"operator.sql\"],\n [/\\d+(\\.\\d+)?/, \"number\"],\n [/\\d+/, \"number\"],\n [/;/, \"delimiter\"],\n [/\"/, { token: \"string.quote\", bracket: \"@open\", next: \"@dstring\" }],\n [/'/, { token: \"string.quote\", bracket: \"@open\", next: \"@sstring\" }]\n ],\n dstring: [\n [/\\[/, { token: \"@brackets\", next: \"@nestedCall\" }],\n [/\\$+(?:\\:\\:)?\\{/, { token: \"identifier\", next: \"@nestedVariable\" }],\n [/@variables/, \"type.identifier\"],\n [/[^\\\\$\\[\\]\"]+/, \"string\"],\n [/@escapes/, \"string.escape\"],\n [/\"/, { token: \"string.quote\", bracket: \"@close\", next: \"@pop\" }]\n ],\n sstring: [\n [/\\[/, { token: \"@brackets\", next: \"@nestedCall\" }],\n [/\\$+(?:\\:\\:)?\\{/, { token: \"identifier\", next: \"@nestedVariable\" }],\n [/@variables/, \"type.identifier\"],\n [/[^\\\\$\\[\\]']+/, \"string\"],\n [/@escapes/, \"string.escape\"],\n [/'/, { token: \"string.quote\", bracket: \"@close\", next: \"@pop\" }]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, \"white\"],\n [/#.*\\\\$/, { token: \"comment\", next: \"@newlineComment\" }],\n [/#.*(?!\\\\)$/, \"comment\"]\n ],\n newlineComment: [\n [/.*\\\\$/, \"comment\"],\n [/.*(?!\\\\)$/, { token: \"comment\", next: \"@pop\" }]\n ],\n nestedVariable: [\n [/[^\\{\\}\\$]+/, \"type.identifier\"],\n [/\\}/, { token: \"identifier\", next: \"@pop\" }]\n ],\n nestedCall: [\n [/\\[/, { token: \"@brackets\", next: \"@nestedCall\" }],\n [/\\]/, { token: \"@brackets\", next: \"@pop\" }],\n { include: \"root\" }\n ],\n specialFunc: [\n [/\"/, { token: \"string\", next: \"@dstring\" }],\n [/'/, { token: \"string\", next: \"@sstring\" }],\n [/\\S+/, { token: \"type\", next: \"@pop\" }]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/tcl/tcl.js?");
/***/ })
}]);