UNPKG

@graphql-hive/laboratory

Version:

[Hive](https://the-guild.dev/graphql/hive) is a fully open-source schema registry, analytics, metrics and gateway for [GraphQL federation](https://the-guild.dev/graphql/hive/federation) and other GraphQL APIs.

183 lines (182 loc) • 3.77 kB
/*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ var conf = { wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g, comments: { lineComment: "//", blockComment: ["{", "}"] }, brackets: [ ["{", "}"], ["[", "]"], ["(", ")"], ["<", ">"] ], autoClosingPairs: [ { open: "{", close: "}" }, { open: "[", close: "]" }, { open: "(", close: ")" }, { open: "<", close: ">" }, { open: "'", close: "'" } ], surroundingPairs: [ { open: "{", close: "}" }, { open: "[", close: "]" }, { open: "(", close: ")" }, { open: "<", close: ">" }, { open: "'", close: "'" } ], folding: { markers: { start: /* @__PURE__ */ RegExp("^\\s*\\{\\$REGION(\\s\\'.*\\')?\\}"), end: /* @__PURE__ */ RegExp("^\\s*\\{\\$ENDREGION\\}") } } }, language = { defaultToken: "", tokenPostfix: ".pascal", ignoreCase: !0, brackets: [ { open: "{", close: "}", token: "delimiter.curly" }, { open: "[", close: "]", token: "delimiter.square" }, { open: "(", close: ")", token: "delimiter.parenthesis" }, { open: "<", close: ">", token: "delimiter.angle" } ], keywords: /* @__PURE__ */ "absolute.abstract.all.and_then.array.as.asm.attribute.begin.bindable.case.class.const.contains.default.div.else.end.except.exports.external.far.file.finalization.finally.forward.generic.goto.if.implements.import.in.index.inherited.initialization.interrupt.is.label.library.mod.module.name.near.not.object.of.on.only.operator.or_else.otherwise.override.package.packed.pow.private.program.protected.public.published.interface.implementation.qualified.read.record.resident.requires.resourcestring.restricted.segment.set.shl.shr.specialize.stored.strict.then.threadvar.to.try.type.unit.uses.var.view.virtual.dynamic.overload.reintroduce.with.write.xor.true.false.procedure.function.constructor.destructor.property.break.continue.exit.abort.while.do.for.raise.repeat.until".split("."), typeKeywords: [ "boolean", "double", "byte", "integer", "shortint", "char", "longint", "float", "string" ], operators: [ "=", ">", "<", "<=", ">=", "<>", ":", ":=", "and", "or", "+", "-", "*", "/", "@", "&", "^", "%" ], symbols: /[=><:@\^&|+\-*\/\^%]+/, tokenizer: { root: [ [/[a-zA-Z_][\w]*/, { cases: { "@keywords": { token: "keyword.$0" }, "@default": "identifier" } }], { include: "@whitespace" }, [/[{}()\[\]]/, "@brackets"], [/[<>](?!@symbols)/, "@brackets"], [/@symbols/, { cases: { "@operators": "delimiter", "@default": "" } }], [/\d*\.\d+([eE][\-+]?\d+)?/, "number.float"], [/\$[0-9a-fA-F]{1,16}/, "number.hex"], [/\d+/, "number"], [/[;,.]/, "delimiter"], [/'([^'\\]|\\.)*$/, "string.invalid"], [ /'/, "string", "@string" ], [/'[^\\']'/, "string"], [/'/, "string.invalid"], [/\#\d+/, "string"] ], comment: [ [/[^\*\}]+/, "comment"], [ /\}/, "comment", "@pop" ], [/[\{]/, "comment"] ], string: [ [/[^\\']+/, "string"], [/\\./, "string.escape.invalid"], [/'/, { token: "string.quote", bracket: "@close", next: "@pop" }] ], whitespace: [ [/[ \t\r\n]+/, "white"], [ /\{/, "comment", "@comment" ], [/\/\/.*$/, "comment"] ] } }; export { conf, language };