123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- /*!-----------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Version: 0.31.1(337587859b1c171314b40503171188b6cea6a32a)
- * Released under the MIT license
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
- *-----------------------------------------------------------------------------*/
- define("vs/basic-languages/swift/swift",[],()=>{
- var moduleExports = (() => {
- var __defProp = Object.defineProperty;
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
- var __export = (target, all) => {
- __markAsModule(target);
- for (var name in all)
- __defProp(target, name, { get: all[name], enumerable: true });
- };
- // src/basic-languages/swift/swift.ts
- var swift_exports = {};
- __export(swift_exports, {
- conf: () => conf,
- language: () => language
- });
- var conf = {
- comments: {
- lineComment: "//",
- blockComment: ["/*", "*/"]
- },
- brackets: [
- ["{", "}"],
- ["[", "]"],
- ["(", ")"]
- ],
- autoClosingPairs: [
- { open: "{", close: "}" },
- { open: "[", close: "]" },
- { open: "(", close: ")" },
- { open: '"', close: '"' },
- { open: "'", close: "'" },
- { open: "`", close: "`" }
- ],
- surroundingPairs: [
- { open: "{", close: "}" },
- { open: "[", close: "]" },
- { open: "(", close: ")" },
- { open: '"', close: '"' },
- { open: "'", close: "'" },
- { open: "`", close: "`" }
- ]
- };
- var language = {
- defaultToken: "",
- tokenPostfix: ".swift",
- identifier: /[a-zA-Z_][\w$]*/,
- attributes: [
- "@autoclosure",
- "@noescape",
- "@noreturn",
- "@NSApplicationMain",
- "@NSCopying",
- "@NSManaged",
- "@objc",
- "@UIApplicationMain",
- "@noreturn",
- "@availability",
- "@IBAction",
- "@IBDesignable",
- "@IBInspectable",
- "@IBOutlet"
- ],
- accessmodifiers: ["public", "private", "fileprivate", "internal"],
- keywords: [
- "__COLUMN__",
- "__FILE__",
- "__FUNCTION__",
- "__LINE__",
- "as",
- "as!",
- "as?",
- "associativity",
- "break",
- "case",
- "catch",
- "class",
- "continue",
- "convenience",
- "default",
- "deinit",
- "didSet",
- "do",
- "dynamic",
- "dynamicType",
- "else",
- "enum",
- "extension",
- "fallthrough",
- "fileprivate",
- "final",
- "for",
- "func",
- "get",
- "guard",
- "if",
- "import",
- "in",
- "infix",
- "init",
- "inout",
- "internal",
- "is",
- "lazy",
- "left",
- "let",
- "mutating",
- "nil",
- "none",
- "nonmutating",
- "operator",
- "optional",
- "override",
- "postfix",
- "precedence",
- "prefix",
- "private",
- "protocol",
- "Protocol",
- "public",
- "repeat",
- "required",
- "return",
- "right",
- "self",
- "Self",
- "set",
- "static",
- "struct",
- "subscript",
- "super",
- "switch",
- "throw",
- "throws",
- "try",
- "try!",
- "Type",
- "typealias",
- "unowned",
- "var",
- "weak",
- "where",
- "while",
- "willSet",
- "FALSE",
- "TRUE"
- ],
- symbols: /[=(){}\[\].,:;@#\_&\-<>`?!+*\\\/]/,
- operatorstart: /[\/=\-+!*%<>&|^~?\u00A1-\u00A7\u00A9\u00AB\u00AC\u00AE\u00B0-\u00B1\u00B6\u00BB\u00BF\u00D7\u00F7\u2016-\u2017\u2020-\u2027\u2030-\u203E\u2041-\u2053\u2055-\u205E\u2190-\u23FF\u2500-\u2775\u2794-\u2BFF\u2E00-\u2E7F\u3001-\u3003\u3008-\u3030]/,
- operatorend: /[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE00-\uFE0F\uFE20-\uFE2F\uE0100-\uE01EF]/,
- operators: /(@operatorstart)((@operatorstart)|(@operatorend))*/,
- escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
- tokenizer: {
- root: [
- { include: "@whitespace" },
- { include: "@comment" },
- { include: "@attribute" },
- { include: "@literal" },
- { include: "@keyword" },
- { include: "@invokedmethod" },
- { include: "@symbol" }
- ],
- whitespace: [
- [/\s+/, "white"],
- [/"""/, "string.quote", "@endDblDocString"]
- ],
- endDblDocString: [
- [/[^"]+/, "string"],
- [/\\"/, "string"],
- [/"""/, "string.quote", "@popall"],
- [/"/, "string"]
- ],
- symbol: [
- [/[{}()\[\]]/, "@brackets"],
- [/[<>](?!@symbols)/, "@brackets"],
- [/[.]/, "delimiter"],
- [/@operators/, "operator"],
- [/@symbols/, "operator"]
- ],
- comment: [
- [/\/\/\/.*$/, "comment.doc"],
- [/\/\*\*/, "comment.doc", "@commentdocbody"],
- [/\/\/.*$/, "comment"],
- [/\/\*/, "comment", "@commentbody"]
- ],
- commentdocbody: [
- [/\/\*/, "comment", "@commentbody"],
- [/\*\//, "comment.doc", "@pop"],
- [/\:[a-zA-Z]+\:/, "comment.doc.param"],
- [/./, "comment.doc"]
- ],
- commentbody: [
- [/\/\*/, "comment", "@commentbody"],
- [/\*\//, "comment", "@pop"],
- [/./, "comment"]
- ],
- attribute: [
- [
- /@@@identifier/,
- {
- cases: {
- "@attributes": "keyword.control",
- "@default": ""
- }
- }
- ]
- ],
- literal: [
- [/"/, { token: "string.quote", next: "@stringlit" }],
- [/0[b]([01]_?)+/, "number.binary"],
- [/0[o]([0-7]_?)+/, "number.octal"],
- [/0[x]([0-9a-fA-F]_?)+([pP][\-+](\d_?)+)?/, "number.hex"],
- [/(\d_?)*\.(\d_?)+([eE][\-+]?(\d_?)+)?/, "number.float"],
- [/(\d_?)+/, "number"]
- ],
- stringlit: [
- [/\\\(/, { token: "operator", next: "@interpolatedexpression" }],
- [/@escapes/, "string"],
- [/\\./, "string.escape.invalid"],
- [/"/, { token: "string.quote", next: "@pop" }],
- [/./, "string"]
- ],
- interpolatedexpression: [
- [/\(/, { token: "operator", next: "@interpolatedexpression" }],
- [/\)/, { token: "operator", next: "@pop" }],
- { include: "@literal" },
- { include: "@keyword" },
- { include: "@symbol" }
- ],
- keyword: [
- [/`/, { token: "operator", next: "@escapedkeyword" }],
- [
- /@identifier/,
- {
- cases: {
- "@keywords": "keyword",
- "[A-Z][a-zA-Z0-9$]*": "type.identifier",
- "@default": "identifier"
- }
- }
- ]
- ],
- escapedkeyword: [
- [/`/, { token: "operator", next: "@pop" }],
- [/./, "identifier"]
- ],
- invokedmethod: [
- [
- /([.])(@identifier)/,
- {
- cases: {
- $2: ["delimeter", "type.identifier"],
- "@default": ""
- }
- }
- ]
- ]
- }
- };
- return swift_exports;
- })();
- /*!---------------------------------------------------------------------------------------------
- * Copyright (C) David Owens II, owensd.io. All rights reserved.
- *--------------------------------------------------------------------------------------------*/
- return moduleExports;
- });
|