define("vs/bicep-XOQLqtWX", ["exports"], (function(exports) { "use strict"; const bounded = (text) => `\\b${text}\\b`; const identifierStart = "[_a-zA-Z]"; const identifierContinue = "[_a-zA-Z0-9]"; const identifier = bounded(`${identifierStart}${identifierContinue}*`); const keywords = [ "targetScope", "resource", "module", "param", "var", "output", "for", "in", "if", "existing" ]; const namedLiterals = ["true", "false", "null"]; const nonCommentWs = `[ \\t\\r\\n]`; const numericLiteral = `[0-9]+`; const conf = { comments: { lineComment: "//", blockComment: ["/*", "*/"] }, brackets: [ ["{", "}"], ["[", "]"], ["(", ")"] ], surroundingPairs: [ { open: "{", close: "}" }, { open: "[", close: "]" }, { open: "(", close: ")" }, { open: "'", close: "'" }, { open: "'''", close: "'''" } ], autoClosingPairs: [ { open: "{", close: "}" }, { open: "[", close: "]" }, { open: "(", close: ")" }, { open: "'", close: "'", notIn: ["string", "comment"] }, { open: "'''", close: "'''", notIn: ["string", "comment"] } ], autoCloseBefore: ":.,=}])' \n ", indentationRules: { increaseIndentPattern: new RegExp("^((?!\\/\\/).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$"), decreaseIndentPattern: new RegExp("^((?!.*?\\/\\*).*\\*/)?\\s*[\\}\\]].*$") } }; const language = { defaultToken: "", tokenPostfix: ".bicep", brackets: [ { open: "{", close: "}", token: "delimiter.curly" }, { open: "[", close: "]", token: "delimiter.square" }, { open: "(", close: ")", token: "delimiter.parenthesis" } ], symbols: /[=>