antosdk-apps/MonacoCore/build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_scss_scss_js.bundle.js

4 lines
9.7 KiB
JavaScript
Raw Normal View History

2022-06-03 19:30:11 +02:00
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_scss_scss_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/scss/scss.js":
/*!************************************************************************!*\
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/scss/scss.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/scss/scss.ts\nvar conf = {\n wordPattern: /(#?-?\\d*\\.\\d\\w*%?)|([@$#!.:]?[\\w-?]+%?)|[@#!.]/g,\n comments: {\n blockComment: ["/*", "*/"],\n lineComment: "//"\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}", notIn: ["string", "comment"] },\n { open: "[", close: "]", notIn: ["string", "comment"] },\n { open: "(", close: ")", notIn: ["string", "comment"] },\n { open: \'"\', close: \'"\', notIn: ["string", "comment"] },\n { open: "\'", close: "\'", notIn: ["string", "comment"] }\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*\\\\*\\\\/"),\n end: new RegExp("^\\\\s*\\\\/\\\\*\\\\s*#endregion\\\\b.*\\\\*\\\\/")\n }\n }\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".scss",\n ws: "[ \t\\n\\r\\f]*",\n identifier: "-?-?([a-zA-Z]|(\\\\\\\\(([0-9a-fA-F]{1,6}\\\\s?)|[^[0-9a-fA-F])))([\\\\w\\\\-]|(\\\\\\\\(([0-9a-fA-F]{1,6}\\\\s?)|[^[0-9a-fA-F])))*",\n brackets: [\n { open: "{", close: "}", token: "delimiter.curly" },\n { open: "[", close: "]", token: "delimiter.bracket" },\n { open: "(", close: ")", token: "delimiter.parenthesis" },\n { open: "<", close: ">", token: "delimiter.angle" }\n ],\n tokenizer: {\n root: [{ include: "@selector" }],\n selector: [\n { include: "@comments" },\n { include: "@import" },\n { include: "@variabledeclaration" },\n { include: "@warndebug" },\n ["[@](include)", { token: "keyword", next: "@includedeclaration" }],\n [\n "[@](keyframes|-webkit-keyframes|-moz-keyframes|-o-keyframes)",\n { token: "keyword", next: "@keyframedeclaration" }\n ],\n ["[@](page|content|font-face|-moz-document)", { token: "keyword" }],\n ["[@](charset|namespace)", { token: "keyword", next: "@declarationbody" }],\n ["[@](function)", { token: "keyword", next: "@functiondeclaration" }],\n ["[@](mixin)", { token: "keyword", next: "@mixindeclaration" }],\n ["url(\\\\-prefix)?\\\\(", { token: "meta", next: "@urldeclaration" }],\n { include: "@controlstatement" },\n { include: "@selectorname" },\n ["[&\\\\*]", "tag"],\n ["[>\\\\+,]", "delimiter"],\n ["\\\\[", { token: "delimiter.bracket", next: "@selectorattribute" }],\n ["{", { token: "delimiter.curly", next: "@selectorbody" }]\n ],\n selectorbody: [\n ["[*_]?@identifier@ws:(?=(\\\\s|\\\\d|[^{;}]*[;}]))", "attribute.name", "@rulevalue"],\n { include: "@selector" },\n ["[@](extend)", { token: "keyword", next: "@extendbody" }],\n ["[@](return)", { token: "keyword", next: "@declarationbody" }],\n ["}", { token: "delimiter.curly", next: "@pop" }]\n ],\n selectorname: [\n ["#{", { token: "meta", next: "@variableinterpolation" }],\n ["(\\\\.|#(?=[^{])|%|(@identifier)|:)+", "tag"]\n ],\n selectorattribute: [{ include: "@term" }, ["]", { token: "delimiter.bracket", next: "@pop" }]],\n term: [\n { include: "@co