var Zl = Object.defineProperty; var ec = (t, e, n) => e in t ? Zl(t, e, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[e] = n; var nn = (t, e, n) => (ec(t, typeof e != "symbol" ? e + "" : e, n), n); class tc { constructor() { this.listeners = [], this.unexpectedErrorHandler = function(e) { setTimeout(() => { throw e.stack ? Jt.isErrorNoTelemetry(e) ? new Jt(e.message + ` ` + e.stack) : new Error(e.message + ` ` + e.stack) : e; }, 0); }; } emit(e) { this.listeners.forEach((n) => { n(e); }); } onUnexpectedError(e) { this.unexpectedErrorHandler(e), this.emit(e); } // For external errors, we don't want the listeners to be called onUnexpectedExternalError(e) { this.unexpectedErrorHandler(e); } } const nc = new tc(); function nl(t) { rc(t) || nc.onUnexpectedError(t); } function cs(t) { if (t instanceof Error) { const { name: e, message: n } = t, r = t.stacktrace || t.stack; return { $isError: !0, name: e, message: n, stack: r, noTelemetry: Jt.isErrorNoTelemetry(t) }; } return t; } const Jr = "Canceled"; function rc(t) { return t instanceof ic ? !0 : t instanceof Error && t.name === Jr && t.message === Jr; } class ic extends Error { constructor() { super(Jr), this.name = this.message; } } class Jt extends Error { constructor(e) { super(e), this.name = "CodeExpectedError"; } static fromError(e) { if (e instanceof Jt) return e; const n = new Jt(); return n.message = e.message, n.stack = e.stack, n; } static isErrorNoTelemetry(e) { return e.name === "CodeExpectedError"; } } class vt extends Error { constructor(e) { super(e || "An unexpected bug occurred."), Object.setPrototypeOf(this, vt.prototype); } } function sc(t) { const e = this; let n = !1, r; return function() { return n || (n = !0, r = t.apply(e, arguments)), r; }; } var ir; (function(t) { function e(w) { return w && typeof w == "object" && typeof w[Symbol.iterator] == "function"; } t.is = e; const n = Object.freeze([]); function r() { return n; } t.empty = r; function* i(w) { yield w; } t.single = i; function s(w) { return e(w) ? w : i(w); } t.wrap = s; function a(w) { return w || n; } t.from = a; function* o(w) { for (let S = w.length - 1; S >= 0; S--) yield w[S]; } t.reverse = o; function l(w) { return !w || w[Symbol.iterator]().next().done === !0; } t.isEmpty = l; function c(w) { return w[Symbol.iterator]().next().value; } t.first = c; function h(w, S) { for (const F of w) if (S(F)) return !0; return !1; } t.some = h; function u(w, S) { for (const F of w) if (S(F)) return F; } t.find = u; function* f(w, S) { for (const F of w) S(F) && (yield F); } t.filter = f; function* m(w, S) { let F = 0; for (const E of w) yield S(E, F++); } t.map = m; function* g(...w) { for (const S of w) for (const F of S) yield F; } t.concat = g; function b(w, S, F) { let E = F; for (const P of w) E = S(E, P); return E; } t.reduce = b; function* y(w, S, F = w.length) { for (S < 0 && (S += w.length), F < 0 ? F += w.length : F > w.length && (F = w.length); S < F; S++) yield w[S]; } t.slice = y; function k(w, S = Number.POSITIVE_INFINITY) { const F = []; if (S === 0) return [F, w]; const E = w[Symbol.iterator](); for (let P = 0; P < S; P++) { const T = E.next(); if (T.done) return [F, t.empty()]; F.push(T.value); } return [F, { [Symbol.iterator]() { return E; } }]; } t.consume = k; })(ir || (ir = {})); function rl(t) { if (ir.is(t)) { const e = []; for (const n of t) if (n) try { n.dispose(); } catch (r) { e.push(r); } if (e.length === 1) throw e[0]; if (e.length > 1) throw new AggregateError(e, "Encountered errors while disposing of store"); return Array.isArray(t) ? [] : t; } else if (t) return t.dispose(), t; } function ac(...t) { return yn(() => rl(t)); } function yn(t) { return { dispose: sc(() => { t(); }) }; } class tn { constructor() { this._toDispose = /* @__PURE__ */ new Set(), this._isDisposed = !1; } /** * Dispose of all registered disposables and mark this object as disposed. * * Any future disposables added to this object will be disposed of on `add`. */ dispose() { this._isDisposed || (this._isDisposed = !0, this.clear()); } /** * @return `true` if this object has been disposed of. */ get isDisposed() { return this._isDisposed; } /** * Dispose of all registered disposables but do not mark this object as disposed. */ clear() { if (this._toDispose.size !== 0) try { rl(this._toDispose); } finally { this._toDispose.clear(); } } /** * Add a new {@link IDisposable disposable} to the collection. */ add(e) { if (!e) return e; if (e === this) throw new Error("Cannot register a disposable on itself!"); return this._isDisposed ? tn.DISABLE_DISPOSED_WARNING || console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack) : this._toDispose.add(e), e; } /** * Deletes the value from the store, but does not dispose it. */ deleteAndLeak(e) { e && this._toDispose.has(e) && this._toDispose.delete(e); } } tn.DISABLE_DISPOSED_WARNING = !1; class wn { constructor() { this._store = new tn(), this._store; } dispose() { this._store.dispose(); } /** * Adds `o` to the collection of disposables managed by this object. */ _register(e) { if (e === this) throw new Error("Cannot register a disposable on itself!"); return this._store.add(e); } } wn.None = Object.freeze({ dispose() { } }); let le = class Xr { constructor(e) { this.element = e, this.next = Xr.Undefined, this.prev = Xr.Undefined; } }; le.Undefined = new le(void 0); class oc { constructor() { this._first = le.Undefined, this._last = le.Undefined, this._size = 0; } get size() { return this._size; } isEmpty() { return this._first === le.Undefined; } clear() { let e = this._first; for (; e !== le.Undefined; ) { const n = e.next; e.prev = le.Undefined, e.next = le.Undefined, e = n; } this._first = le.Undefined, this._last = le.Undefined, this._size = 0; } unshift(e) { return this._insert(e, !1); } push(e) { return this._insert(e, !0); } _insert(e, n) { const r = new le(e); if (this._first === le.Undefined) this._first = r, this._last = r; else if (n) { const s = this._last; this._last = r, r.prev = s, s.next = r; } else { const s = this._first; this._first = r, r.next = s, s.prev = r; } this._size += 1; let i = !1; return () => { i || (i = !0, this._remove(r)); }; } shift() { if (this._first !== le.Undefined) { const e = this._first.element; return this._remove(this._first), e; } } pop() { if (this._last !== le.Undefined) { const e = this._last.element; return this._remove(this._last), e; } } _remove(e) { if (e.prev !== le.Undefined && e.next !== le.Undefined) { const n = e.prev; n.next = e.next, e.next.prev = n; } else e.prev === le.Undefined && e.next === le.Undefined ? (this._first = le.Undefined, this._last = le.Undefined) : e.next === le.Undefined ? (this._last = this._last.prev, this._last.next = le.Undefined) : e.prev === le.Undefined && (this._first = this._first.next, this._first.prev = le.Undefined); this._size -= 1; } *[Symbol.iterator]() { let e = this._first; for (; e !== le.Undefined; ) yield e.element, e = e.next; } } const lc = globalThis.performance && typeof globalThis.performance.now == "function"; class kr { static create(e) { return new kr(e); } constructor(e) { this._now = lc && e === !1 ? Date.now : globalThis.performance.now.bind(globalThis.performance), this._startTime = this._now(), this._stopTime = -1; } stop() { this._stopTime = this._now(); } elapsed() { return this._stopTime !== -1 ? this._stopTime - this._startTime : this._now() - this._startTime; } } var Yr; (function(t) { t.None = () => wn.None; function e(D, N) { return u(D, () => { }, 0, void 0, !0, void 0, N); } t.defer = e; function n(D) { return (N, L = null, I) => { let O = !1, _; return _ = D((x) => { if (!O) return _ ? _.dispose() : O = !0, N.call(L, x); }, null, I), O && _.dispose(), _; }; } t.once = n; function r(D, N, L) { return c((I, O = null, _) => D((x) => I.call(O, N(x)), null, _), L); } t.map = r; function i(D, N, L) { return c((I, O = null, _) => D((x) => { N(x), I.call(O, x); }, null, _), L); } t.forEach = i; function s(D, N, L) { return c((I, O = null, _) => D((x) => N(x) && I.call(O, x), null, _), L); } t.filter = s; function a(D) { return D; } t.signal = a; function o(...D) { return (N, L = null, I) => { const O = ac(...D.map((_) => _((x) => N.call(L, x)))); return h(O, I); }; } t.any = o; function l(D, N, L, I) { let O = L; return r(D, (_) => (O = N(O, _), O), I); } t.reduce = l; function c(D, N) { let L; const I = { onWillAddFirstListener() { L = D(O.fire, O); }, onDidRemoveLastListener() { L == null || L.dispose(); } }, O = new je(I); return N == null || N.add(O), O.event; } function h(D, N) { return N instanceof Array ? N.push(D) : N && N.add(D), D; } function u(D, N, L = 100, I = !1, O = !1, _, x) { let A, M, G, J = 0, Q; const Pe = { leakWarningThreshold: _, onWillAddFirstListener() { A = D((Fe) => { J++, M = N(M, Fe), I && !G && (de.fire(M), M = void 0), Q = () => { const tt = M; M = void 0, G = void 0, (!I || J > 1) && de.fire(tt), J = 0; }, typeof L == "number" ? (clearTimeout(G), G = setTimeout(Q, L)) : G === void 0 && (G = 0, queueMicrotask(Q)); }); }, onWillRemoveListener() { O && J > 0 && (Q == null || Q()); }, onDidRemoveLastListener() { Q = void 0, A.dispose(); } }, de = new je(Pe); return x == null || x.add(de), de.event; } t.debounce = u; function f(D, N = 0, L) { return t.debounce(D, (I, O) => I ? (I.push(O), I) : [O], N, void 0, !0, void 0, L); } t.accumulate = f; function m(D, N = (I, O) => I === O, L) { let I = !0, O; return s(D, (_) => { const x = I || !N(_, O); return I = !1, O = _, x; }, L); } t.latch = m; function g(D, N, L) { return [ t.filter(D, N, L), t.filter(D, (I) => !N(I), L) ]; } t.split = g; function b(D, N = !1, L = [], I) { let O = L.slice(), _ = D((M) => { O ? O.push(M) : A.fire(M); }); I && I.add(_); const x = () => { O == null || O.forEach((M) => A.fire(M)), O = null; }, A = new je({ onWillAddFirstListener() { _ || (_ = D((M) => A.fire(M)), I && I.add(_)); }, onDidAddFirstListener() { O && (N ? setTimeout(x) : x()); }, onDidRemoveLastListener() { _ && _.dispose(), _ = null; } }); return I && I.add(A), A.event; } t.buffer = b; function y(D, N) { return (I, O, _) => { const x = N(new w()); return D(function(A) { const M = x.evaluate(A); M !== k && I.call(O, M); }, void 0, _); }; } t.chain = y; const k = Symbol("HaltChainable"); class w { constructor() { this.steps = []; } map(N) { return this.steps.push(N), this; } forEach(N) { return this.steps.push((L) => (N(L), L)), this; } filter(N) { return this.steps.push((L) => N(L) ? L : k), this; } reduce(N, L) { let I = L; return this.steps.push((O) => (I = N(I, O), I)), this; } latch(N = (L, I) => L === I) { let L = !0, I; return this.steps.push((O) => { const _ = L || !N(O, I); return L = !1, I = O, _ ? O : k; }), this; } evaluate(N) { for (const L of this.steps) if (N = L(N), N === k) break; return N; } } function S(D, N, L = (I) => I) { const I = (...A) => x.fire(L(...A)), O = () => D.on(N, I), _ = () => D.removeListener(N, I), x = new je({ onWillAddFirstListener: O, onDidRemoveLastListener: _ }); return x.event; } t.fromNodeEventEmitter = S; function F(D, N, L = (I) => I) { const I = (...A) => x.fire(L(...A)), O = () => D.addEventListener(N, I), _ = () => D.removeEventListener(N, I), x = new je({ onWillAddFirstListener: O, onDidRemoveLastListener: _ }); return x.event; } t.fromDOMEventEmitter = F; function E(D) { return new Promise((N) => n(D)(N)); } t.toPromise = E; function P(D) { const N = new je(); return D.then((L) => { N.fire(L); }, () => { N.fire(void 0); }).finally(() => { N.dispose(); }), N.event; } t.fromPromise = P; function T(D, N) { return N(void 0), D((L) => N(L)); } t.runAndSubscribe = T; function W(D, N) { let L = null; function I(_) { L == null || L.dispose(), L = new tn(), N(_, L); } I(void 0); const O = D((_) => I(_)); return yn(() => { O.dispose(), L == null || L.dispose(); }); } t.runAndSubscribeWithStore = W; class H { constructor(N, L) { this._observable = N, this._counter = 0, this._hasChanged = !1; const I = { onWillAddFirstListener: () => { N.addObserver(this); }, onDidRemoveLastListener: () => { N.removeObserver(this); } }; this.emitter = new je(I), L && L.add(this.emitter); } beginUpdate(N) { this._counter++; } handlePossibleChange(N) { } handleChange(N, L) { this._hasChanged = !0; } endUpdate(N) { this._counter--, this._counter === 0 && (this._observable.reportChanges(), this._hasChanged && (this._hasChanged = !1, this.emitter.fire(this._observable.get()))); } } function re(D, N) { return new H(D, N).emitter.event; } t.fromObservable = re; function X(D) { return (N) => { let L = 0, I = !1; const O = { beginUpdate() { L++; }, endUpdate() { L--, L === 0 && (D.reportChanges(), I && (I = !1, N())); }, handlePossibleChange() { }, handleChange() { I = !0; } }; return D.addObserver(O), D.reportChanges(), { dispose() { D.removeObserver(O); } }; }; } t.fromObservableLight = X; })(Yr || (Yr = {})); class Xt { constructor(e) { this.listenerCount = 0, this.invocationCount = 0, this.elapsedOverall = 0, this.durations = [], this.name = `${e}_${Xt._idPool++}`, Xt.all.add(this); } start(e) { this._stopWatch = new kr(), this.listenerCount = e; } stop() { if (this._stopWatch) { const e = this._stopWatch.elapsed(); this.durations.push(e), this.elapsedOverall += e, this.invocationCount += 1, this._stopWatch = void 0; } } } Xt.all = /* @__PURE__ */ new Set(); Xt._idPool = 0; let cc = -1; class hc { constructor(e, n = Math.random().toString(18).slice(2, 5)) { this.threshold = e, this.name = n, this._warnCountdown = 0; } dispose() { var e; (e = this._stacks) === null || e === void 0 || e.clear(); } check(e, n) { const r = this.threshold; if (r <= 0 || n < r) return; this._stacks || (this._stacks = /* @__PURE__ */ new Map()); const i = this._stacks.get(e.value) || 0; if (this._stacks.set(e.value, i + 1), this._warnCountdown -= 1, this._warnCountdown <= 0) { this._warnCountdown = r * 0.5; let s, a = 0; for (const [o, l] of this._stacks) (!s || a < l) && (s = o, a = l); console.warn(`[${this.name}] potential listener LEAK detected, having ${n} listeners already. MOST frequent listener (${a}):`), console.warn(s); } return () => { const s = this._stacks.get(e.value) || 0; this._stacks.set(e.value, s - 1); }; } } class Ti { static create() { var e; return new Ti((e = new Error().stack) !== null && e !== void 0 ? e : ""); } constructor(e) { this.value = e; } print() { console.warn(this.value.split(` `).slice(2).join(` `)); } } class Er { constructor(e) { this.value = e; } } const dc = 2; class je { constructor(e) { var n, r, i, s, a; this._size = 0, this._options = e, this._leakageMon = !((n = this._options) === null || n === void 0) && n.leakWarningThreshold ? new hc((i = (r = this._options) === null || r === void 0 ? void 0 : r.leakWarningThreshold) !== null && i !== void 0 ? i : cc) : void 0, this._perfMon = !((s = this._options) === null || s === void 0) && s._profName ? new Xt(this._options._profName) : void 0, this._deliveryQueue = (a = this._options) === null || a === void 0 ? void 0 : a.deliveryQueue; } dispose() { var e, n, r, i; this._disposed || (this._disposed = !0, ((e = this._deliveryQueue) === null || e === void 0 ? void 0 : e.current) === this && this._deliveryQueue.reset(), this._listeners && (this._listeners = void 0, this._size = 0), (r = (n = this._options) === null || n === void 0 ? void 0 : n.onDidRemoveLastListener) === null || r === void 0 || r.call(n), (i = this._leakageMon) === null || i === void 0 || i.dispose()); } /** * For the public to allow to subscribe * to events from this Emitter */ get event() { var e; return (e = this._event) !== null && e !== void 0 || (this._event = (n, r, i) => { var s, a, o, l, c; if (this._leakageMon && this._size > this._leakageMon.threshold * 3) return console.warn(`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far`), wn.None; if (this._disposed) return wn.None; r && (n = n.bind(r)); const h = new Er(n); let u; this._leakageMon && this._size >= Math.ceil(this._leakageMon.threshold * 0.2) && (h.stack = Ti.create(), u = this._leakageMon.check(h.stack, this._size + 1)), this._listeners ? this._listeners instanceof Er ? ((c = this._deliveryQueue) !== null && c !== void 0 || (this._deliveryQueue = new uc()), this._listeners = [this._listeners, h]) : this._listeners.push(h) : ((a = (s = this._options) === null || s === void 0 ? void 0 : s.onWillAddFirstListener) === null || a === void 0 || a.call(s, this), this._listeners = h, (l = (o = this._options) === null || o === void 0 ? void 0 : o.onDidAddFirstListener) === null || l === void 0 || l.call(o, this)), this._size++; const f = yn(() => { u == null || u(), this._removeListener(h); }); return i instanceof tn ? i.add(f) : Array.isArray(i) && i.push(f), f; }), this._event; } _removeListener(e) { var n, r, i, s; if ((r = (n = this._options) === null || n === void 0 ? void 0 : n.onWillRemoveListener) === null || r === void 0 || r.call(n, this), !this._listeners) return; if (this._size === 1) { this._listeners = void 0, (s = (i = this._options) === null || i === void 0 ? void 0 : i.onDidRemoveLastListener) === null || s === void 0 || s.call(i, this), this._size = 0; return; } const a = this._listeners, o = a.indexOf(e); if (o === -1) throw console.log("disposed?", this._disposed), console.log("size?", this._size), console.log("arr?", JSON.stringify(this._listeners)), new Error("Attempted to dispose unknown listener"); this._size--, a[o] = void 0; const l = this._deliveryQueue.current === this; if (this._size * dc <= a.length) { let c = 0; for (let h = 0; h < a.length; h++) a[h] ? a[c++] = a[h] : l && (this._deliveryQueue.end--, c < this._deliveryQueue.i && this._deliveryQueue.i--); a.length = c; } } _deliver(e, n) { var r; if (!e) return; const i = ((r = this._options) === null || r === void 0 ? void 0 : r.onListenerError) || nl; if (!i) { e.value(n); return; } try { e.value(n); } catch (s) { i(s); } } /** Delivers items in the queue. Assumes the queue is ready to go. */ _deliverQueue(e) { const n = e.current._listeners; for (; e.i < e.end; ) this._deliver(n[e.i++], e.value); e.reset(); } /** * To be kept private to fire an event to * subscribers */ fire(e) { var n, r, i, s; if (!((n = this._deliveryQueue) === null || n === void 0) && n.current && (this._deliverQueue(this._deliveryQueue), (r = this._perfMon) === null || r === void 0 || r.stop()), (i = this._perfMon) === null || i === void 0 || i.start(this._size), this._listeners) if (this._listeners instanceof Er) this._deliver(this._listeners, e); else { const a = this._deliveryQueue; a.enqueue(this, e, this._listeners.length), this._deliverQueue(a); } (s = this._perfMon) === null || s === void 0 || s.stop(); } hasListeners() { return this._size > 0; } } class uc { constructor() { this.i = -1, this.end = 0; } enqueue(e, n, r) { this.i = 0, this.end = r, this.current = e, this.value = n; } reset() { this.i = this.end, this.current = void 0, this.value = void 0; } } function pc(t) { return typeof t == "string"; } function fc(t) { let e = []; for (; Object.prototype !== t; ) e = e.concat(Object.getOwnPropertyNames(t)), t = Object.getPrototypeOf(t); return e; } function Kr(t) { const e = []; for (const n of fc(t)) typeof t[n] == "function" && e.push(n); return e; } function mc(t, e) { const n = (i) => function() { const s = Array.prototype.slice.call(arguments, 0); return e(i, s); }, r = {}; for (const i of t) r[i] = n(i); return r; } globalThis && globalThis.__awaiter; let gc = typeof document < "u" && document.location && document.location.hash.indexOf("pseudo=true") >= 0; function bc(t, e) { let n; return e.length === 0 ? n = t : n = t.replace(/\{(\d+)\}/g, (r, i) => { const s = i[0], a = e[s]; let o = r; return typeof a == "string" ? o = a : (typeof a == "number" || typeof a == "boolean" || a === void 0 || a === null) && (o = String(a)), o; }), gc && (n = "[" + n.replace(/[aouei]/g, "$&$&") + "]"), n; } function oe(t, e, ...n) { return bc(e, n); } var Dr; const Ut = "en"; let Qr = !1, Zr = !1, Ar = !1, il = !1, Un, Nr = Ut, hs = Ut, vc, qe; const He = typeof self == "object" ? self : typeof global == "object" ? global : {}; let ke; typeof He.vscode < "u" && typeof He.vscode.process < "u" ? ke = He.vscode.process : typeof process < "u" && (ke = process); const yc = typeof ((Dr = ke == null ? void 0 : ke.versions) === null || Dr === void 0 ? void 0 : Dr.electron) == "string", wc = yc && (ke == null ? void 0 : ke.type) === "renderer"; if (typeof navigator == "object" && !wc) qe = navigator.userAgent, Qr = qe.indexOf("Windows") >= 0, Zr = qe.indexOf("Macintosh") >= 0, (qe.indexOf("Macintosh") >= 0 || qe.indexOf("iPad") >= 0 || qe.indexOf("iPhone") >= 0) && navigator.maxTouchPoints && navigator.maxTouchPoints > 0, Ar = qe.indexOf("Linux") >= 0, (qe == null ? void 0 : qe.indexOf("Mobi")) >= 0, il = !0, // This call _must_ be done in the file that calls `nls.getConfiguredDefaultLocale` // to ensure that the NLS AMD Loader plugin has been loaded and configured. // This is because the loader plugin decides what the default locale is based on // how it's able to resolve the strings. oe({ key: "ensureLoaderPluginIsLoaded", comment: ["{Locked}"] }, "_"), Un = Ut, Nr = Un, hs = navigator.language; else if (typeof ke == "object") { Qr = ke.platform === "win32", Zr = ke.platform === "darwin", Ar = ke.platform === "linux", Ar && ke.env.SNAP && ke.env.SNAP_REVISION, ke.env.CI || ke.env.BUILD_ARTIFACTSTAGINGDIRECTORY, Un = Ut, Nr = Ut; const t = ke.env.VSCODE_NLS_CONFIG; if (t) try { const e = JSON.parse(t), n = e.availableLanguages["*"]; Un = e.locale, hs = e.osLocale, Nr = n || Ut, vc = e._translationsConfigFile; } catch { } } else console.error("Unable to resolve platform."); const xn = Qr, xc = Zr; il && He.importScripts; const Ke = qe, Sc = typeof He.postMessage == "function" && !He.importScripts; (() => { if (Sc) { const t = []; He.addEventListener("message", (n) => { if (n.data && n.data.vscodeScheduleAsyncWork) for (let r = 0, i = t.length; r < i; r++) { const s = t[r]; if (s.id === n.data.vscodeScheduleAsyncWork) { t.splice(r, 1), s.callback(); return; } } }); let e = 0; return (n) => { const r = ++e; t.push({ id: r, callback: n }), He.postMessage({ vscodeScheduleAsyncWork: r }, "*"); }; } return (t) => setTimeout(t); })(); const Cc = !!(Ke && Ke.indexOf("Chrome") >= 0); Ke && Ke.indexOf("Firefox") >= 0; !Cc && Ke && Ke.indexOf("Safari") >= 0; Ke && Ke.indexOf("Edg/") >= 0; Ke && Ke.indexOf("Android") >= 0; class kc { constructor(e) { this.fn = e, this.lastCache = void 0, this.lastArgKey = void 0; } get(e) { const n = JSON.stringify(e); return this.lastArgKey !== n && (this.lastArgKey = n, this.lastCache = this.fn(e)), this.lastCache; } } class sl { constructor(e) { this.executor = e, this._didRun = !1; } /** * Get the wrapped value. * * This will force evaluation of the lazy value if it has not been resolved yet. Lazy values are only * resolved once. `getValue` will re-throw exceptions that are hit while resolving the value */ get value() { if (!this._didRun) try { this._value = this.executor(); } catch (e) { this._error = e; } finally { this._didRun = !0; } if (this._error) throw this._error; return this._value; } /** * Get the wrapped value without forcing evaluation. */ get rawValue() { return this._value; } } var Yt; function _c(t) { return t.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g, "\\$&"); } function Rc(t) { return t.split(/\r\n|\r|\n/); } function Fc(t) { for (let e = 0, n = t.length; e < n; e++) { const r = t.charCodeAt(e); if (r !== 32 && r !== 9) return e; } return -1; } function Ec(t, e = t.length - 1) { for (let n = e; n >= 0; n--) { const r = t.charCodeAt(n); if (r !== 32 && r !== 9) return n; } return -1; } function al(t) { return t >= 65 && t <= 90; } function ei(t) { return 55296 <= t && t <= 56319; } function Dc(t) { return 56320 <= t && t <= 57343; } function Ac(t, e) { return (t - 55296 << 10) + (e - 56320) + 65536; } function Nc(t, e, n) { const r = t.charCodeAt(n); if (ei(r) && n + 1 < e) { const i = t.charCodeAt(n + 1); if (Dc(i)) return Ac(r, i); } return r; } const Mc = /^[\t\n\r\x20-\x7E]*$/; function zc(t) { return Mc.test(t); } class Nt { static getInstance(e) { return Yt.cache.get(Array.from(e)); } static getLocales() { return Yt._locales.value; } constructor(e) { this.confusableDictionary = e; } isAmbiguous(e) { return this.confusableDictionary.has(e); } /** * Returns the non basic ASCII code point that the given code point can be confused, * or undefined if such code point does note exist. */ getPrimaryConfusable(e) { return this.confusableDictionary.get(e); } getConfusableCodePoints() { return new Set(this.confusableDictionary.keys()); } } Yt = Nt; Nt.ambiguousCharacterData = new sl(() => JSON.parse('{"_common":[8232,32,8233,32,5760,32,8192,32,8193,32,8194,32,8195,32,8196,32,8197,32,8198,32,8200,32,8201,32,8202,32,8287,32,8199,32,8239,32,2042,95,65101,95,65102,95,65103,95,8208,45,8209,45,8210,45,65112,45,1748,45,8259,45,727,45,8722,45,10134,45,11450,45,1549,44,1643,44,8218,44,184,44,42233,44,894,59,2307,58,2691,58,1417,58,1795,58,1796,58,5868,58,65072,58,6147,58,6153,58,8282,58,1475,58,760,58,42889,58,8758,58,720,58,42237,58,451,33,11601,33,660,63,577,63,2429,63,5038,63,42731,63,119149,46,8228,46,1793,46,1794,46,42510,46,68176,46,1632,46,1776,46,42232,46,1373,96,65287,96,8219,96,8242,96,1370,96,1523,96,8175,96,65344,96,900,96,8189,96,8125,96,8127,96,8190,96,697,96,884,96,712,96,714,96,715,96,756,96,699,96,701,96,700,96,702,96,42892,96,1497,96,2036,96,2037,96,5194,96,5836,96,94033,96,94034,96,65339,91,10088,40,10098,40,12308,40,64830,40,65341,93,10089,41,10099,41,12309,41,64831,41,10100,123,119060,123,10101,125,65342,94,8270,42,1645,42,8727,42,66335,42,5941,47,8257,47,8725,47,8260,47,9585,47,10187,47,10744,47,119354,47,12755,47,12339,47,11462,47,20031,47,12035,47,65340,92,65128,92,8726,92,10189,92,10741,92,10745,92,119311,92,119355,92,12756,92,20022,92,12034,92,42872,38,708,94,710,94,5869,43,10133,43,66203,43,8249,60,10094,60,706,60,119350,60,5176,60,5810,60,5120,61,11840,61,12448,61,42239,61,8250,62,10095,62,707,62,119351,62,5171,62,94015,62,8275,126,732,126,8128,126,8764,126,65372,124,65293,45,120784,50,120794,50,120804,50,120814,50,120824,50,130034,50,42842,50,423,50,1000,50,42564,50,5311,50,42735,50,119302,51,120785,51,120795,51,120805,51,120815,51,120825,51,130035,51,42923,51,540,51,439,51,42858,51,11468,51,1248,51,94011,51,71882,51,120786,52,120796,52,120806,52,120816,52,120826,52,130036,52,5070,52,71855,52,120787,53,120797,53,120807,53,120817,53,120827,53,130037,53,444,53,71867,53,120788,54,120798,54,120808,54,120818,54,120828,54,130038,54,11474,54,5102,54,71893,54,119314,55,120789,55,120799,55,120809,55,120819,55,120829,55,130039,55,66770,55,71878,55,2819,56,2538,56,2666,56,125131,56,120790,56,120800,56,120810,56,120820,56,120830,56,130040,56,547,56,546,56,66330,56,2663,57,2920,57,2541,57,3437,57,120791,57,120801,57,120811,57,120821,57,120831,57,130041,57,42862,57,11466,57,71884,57,71852,57,71894,57,9082,97,65345,97,119834,97,119886,97,119938,97,119990,97,120042,97,120094,97,120146,97,120198,97,120250,97,120302,97,120354,97,120406,97,120458,97,593,97,945,97,120514,97,120572,97,120630,97,120688,97,120746,97,65313,65,119808,65,119860,65,119912,65,119964,65,120016,65,120068,65,120120,65,120172,65,120224,65,120276,65,120328,65,120380,65,120432,65,913,65,120488,65,120546,65,120604,65,120662,65,120720,65,5034,65,5573,65,42222,65,94016,65,66208,65,119835,98,119887,98,119939,98,119991,98,120043,98,120095,98,120147,98,120199,98,120251,98,120303,98,120355,98,120407,98,120459,98,388,98,5071,98,5234,98,5551,98,65314,66,8492,66,119809,66,119861,66,119913,66,120017,66,120069,66,120121,66,120173,66,120225,66,120277,66,120329,66,120381,66,120433,66,42932,66,914,66,120489,66,120547,66,120605,66,120663,66,120721,66,5108,66,5623,66,42192,66,66178,66,66209,66,66305,66,65347,99,8573,99,119836,99,119888,99,119940,99,119992,99,120044,99,120096,99,120148,99,120200,99,120252,99,120304,99,120356,99,120408,99,120460,99,7428,99,1010,99,11429,99,43951,99,66621,99,128844,67,71922,67,71913,67,65315,67,8557,67,8450,67,8493,67,119810,67,119862,67,119914,67,119966,67,120018,67,120174,67,120226,67,120278,67,120330,67,120382,67,120434,67,1017,67,11428,67,5087,67,42202,67,66210,67,66306,67,66581,67,66844,67,8574,100,8518,100,119837,100,119889,100,119941,100,119993,100,120045,100,120097,100,120149,100,120201,100,120253,100,120305,100,120357,100,120409,100,120461,100,1281,100,5095,100,5231,100,42194,100,8558,68,8517,68,119811,68,119863,68,119915,68,119967,68,120019,68,120071,68,120123,68,120175,68,120227,68,120279,68,120331,68,120383,68,120435,68,5024,68,5598,68,5610,68,42195,68,8494,101,65349,101,8495,101,8519,101,119838,101,119890,101,119942,101,120046,101,120098,101,120150,101,120202,101,120254,101,120306,101,120358,101,120410,101,120462,101,43826,101,1213,101,8959,69,65317,69,8496,69,119812,69,119864,69,119916,69,120020,69,120072,69,120124,69,120176,69,120228,69,120280,69,120332,69,120384,69,120436,69,917,69,120492,69,120550,69,120608,69,120666,69,120724,69,11577,69,5036,69,42224,69,71846,69,71854,69,66182,69,119839,102,119891,102,119943,102,119995,102,120047,102,120099,102,120151,102,120203,102,120255,102,120307,102,120359,102,120411,102,120463,102,43829,102,42905,102,383,102,7837,102,1412,102,119315,70,8497,70,119813,70,119865,70,119917,70,120021,70,120073,70,120125,70,120177,70,120229,70,120281,70,120333,70,120385,70,120437,70,42904,70,988,70,120778,70,5556,70,42205,70,71874,70,71842,70,66183,70,66213,70,66853,70,65351,103,8458,103,119840,103,119892,103,119944,103,120048,103,120100,103,120152,103,120204,103,120256,103,120308,103,120360,103,120412,103,120464,103,609,103,7555,103,397,103,1409,103,119814,71,119866,71,119918,71,119970,71,120022,71,120074,71,120126,71,120178,71,120230,71,120282,71,120334,71,120386,71,120438,71,1292,71,5056,71,5107,71,42198,71,65352,104,8462,104,119841,104,119945,104,119997,104,120049,104,120101,104,120153,104,120205,104,120257,104,120309,104,120361,104,120413,104,120465,104,1211,104,1392,104,5058,104,65320,72,8459,72,8460,72,8461,72,119815,72,119867,72,119919,72,120023,72,120179,72,120231,72,120283,72,120335,72,120387,72,120439,72,919,72,120494,72,120552,72,120610,72,120668,72,120726,72,11406,72,5051,72,5500,72,42215,72,66255,72,731,105,9075,105,65353,105,8560,105,8505,105,8520,105,119842,105,119894,105,119946,105,119998,105,120050,105,120102,105,120154,105,120206,105,120258,105,120310,105,120362,105,120414,105,120466,105,120484,105,618,105,617,105,953,105,8126,105,890,105,120522,105,120580,105,120638,105,120696,105,120754,105,1110,105,42567,105,1231,105,43893,105,5029,105,71875,105,65354,106,8521,106,119843,106,119895,106,119947,106,119999,106,120051,106,120103,106,120155,106,120207,106,120259,106,120311,106,120363,106,120415,106,120467,106,1011,106,1112,106,65322,74,119817,74,119869,74,119921,74,119973,74,120025,74,120077,74,120129,74,120181,74,120233,74,120285,74,120337,74,120389,74,120441,74,42930,74,895,74,1032,74,5035,74,5261,74,42201,74,119844,107,119896,107,119948,107,120000,107,120052,107,120104,107,120156,107,120208,107,120260,107,120312,107,120364,107,120416,107,120468,107,8490,75,65323,75,119818,75,119870,75,119922,75,119974,75,120026,75,120078,75,120130,75,120182,75,120234,75,120286,75,120338,75,120390,75,120442,75,922,75,120497,75,120555,75,120613,75,120671,75,120729,75,11412,75,5094,75,5845,75,42199,75,66840,75,1472,108,8739,73,9213,73,65512,73,1633,108,1777,73,66336,108,125127,108,120783,73,120793,73,120803,73,120813,73,120823,73,130033,73,65321,73,8544,73,8464,73,8465,73,119816,73,119868,73,119920,73,120024,73,120128,73,120180,73,120232,73,120284,73,120336,73,120388,73,120440,73,65356,108,8572,73,8467,108,119845,108,119897,108,119949,108,120001,108,120053,108,120105,73,120157,73,120209,73,120261,73,120313,73,120365,73,120417,73,120469,73,448,73,120496,73,120554,73,120612,73,120670,73,120728,73,11410,73,1030,73,1216,73,1493,108,1503,108,1575,108,126464,108,126592,108,65166,108,65165,108,1994,108,11599,73,5825,73,42226,73,93992,73,66186,124,66313,124,119338,76,8556,76,8466,76,119819,76,119871,76,119923,76,120027,76,120079,76,120131,76,120183,76,120235,76,120287,76,120339,76,120391,76,120443,76,11472,76,5086,76,5290,76,42209,76,93974,76,71843,76,71858,76,66587,76,66854,76,65325,77,8559,77,8499,77,119820,77,119872,77,119924,77,120028,77,120080,77,120132,77,120184,77,120236,77,120288,77,120340,77,120392,77,120444,77,924,77,120499,77,120557,77,120615,77,120673,77,120731,77,1018,77,11416,77,5047,77,5616,77,5846,77,42207,77,66224,77,66321,77,119847,110,119899,110,119951,110,120003,110,120055,110,120107,110,120159,110,120211,110,120263,110,120315,110,120367,110,120419,110,120471,110,1400,110,1404,110,65326,78,8469,78,119821,78,119873,78,119925,78,119977,78,120029,78,120081,78,120185,78,120237,78,120289,78,120341,78,120393,78,120445,78,925,78,120500,78,120558,78,120616,78,120674,78,120732,78,11418,78,42208,78,66835,78,3074,111,3202,111,3330,111,3458,111,2406,111,2662,111,2790,111,3046,111,3174,111,3302,111,3430,111,3664,111,3792,111,4160,111,1637,111,1781,111,65359,111,8500,111,119848,111,119900,111,119952,111,120056,111,120108,111,120160,111,120212,111,120264,111,120316,111,120368,111,120420,111,120472,111,7439,111,7441,111,43837,111,959,111,120528,111,120586,111,120644,111,120702,111,120760,111,963,111,120532,111,120590,111,120648,111,120706,111,120764,111,11423,111,4351,111,1413,111,1505,111,1607,111,126500,111,126564,111,126596,111,65259,111,65260,111,65258,111,65257,111,1726,111,64428,111,64429,111,64427,111,64426,111,1729,111,64424,111,64425,111,64423,111,64422,111,1749,111,3360,111,4125,111,66794,111,71880,111,71895,111,66604,111,1984,79,2534,79,2918,79,12295,79,70864,79,71904,79,120782,79,120792,79,120802,79,120812,79,120822,79,130032,79,65327,79,119822,79,119874,79,119926,79,119978,79,120030,79,120082,79,120134,79,120186,79,120238,79,120290,79,120342,79,120394,79,120446,79,927,79,120502,79,120560,79,120618,79,120676,79,120734,79,11422,79,1365,79,11604,79,4816,79,2848,79,66754,79,42227,79,71861,79,66194,79,66219,79,66564,79,66838,79,9076,112,65360,112,119849,112,119901,112,119953,112,120005,112,120057,112,120109,112,120161,112,120213,112,120265,112,120317,112,120369,112,120421,112,120473,112,961,112,120530,112,120544,112,120588,112,120602,112,120646,112,120660,112,120704,112,120718,112,120762,112,120776,112,11427,112,65328,80,8473,80,119823,80,119875,80,119927,80,119979,80,120031,80,120083,80,120187,80,120239,80,120291,80,120343,80,120395,80,120447,80,929,80,120504,80,120562,80,120620,80,120678,80,120736,80,11426,80,5090,80,5229,80,42193,80,66197,80,119850,113,119902,113,119954,113,120006,113,120058,113,120110,113,120162,113,120214,113,120266,113,120318,113,120370,113,120422,113,120474,113,1307,113,1379,113,1382,113,8474,81,119824,81,119876,81,119928,81,119980,81,120032,81,120084,81,120188,81,120240,81,120292,81,120344,81,120396,81,120448,81,11605,81,119851,114,119903,114,119955,114,120007,114,120059,114,120111,114,120163,114,120215,114,120267,114,120319,114,120371,114,120423,114,120475,114,43847,114,43848,114,7462,114,11397,114,43905,114,119318,82,8475,82,8476,82,8477,82,119825,82,119877,82,119929,82,120033,82,120189,82,120241,82,120293,82,120345,82,120397,82,120449,82,422,82,5025,82,5074,82,66740,82,5511,82,42211,82,94005,82,65363,115,119852,115,119904,115,119956,115,120008,115,120060,115,120112,115,120164,115,120216,115,120268,115,120320,115,120372,115,120424,115,120476,115,42801,115,445,115,1109,115,43946,115,71873,115,66632,115,65331,83,119826,83,119878,83,119930,83,119982,83,120034,83,120086,83,120138,83,120190,83,120242,83,120294,83,120346,83,120398,83,120450,83,1029,83,1359,83,5077,83,5082,83,42210,83,94010,83,66198,83,66592,83,119853,116,119905,116,119957,116,120009,116,120061,116,120113,116,120165,116,120217,116,120269,116,120321,116,120373,116,120425,116,120477,116,8868,84,10201,84,128872,84,65332,84,119827,84,119879,84,119931,84,119983,84,120035,84,120087,84,120139,84,120191,84,120243,84,120295,84,120347,84,120399,84,120451,84,932,84,120507,84,120565,84,120623,84,120681,84,120739,84,11430,84,5026,84,42196,84,93962,84,71868,84,66199,84,66225,84,66325,84,119854,117,119906,117,119958,117,120010,117,120062,117,120114,117,120166,117,120218,117,120270,117,120322,117,120374,117,120426,117,120478,117,42911,117,7452,117,43854,117,43858,117,651,117,965,117,120534,117,120592,117,120650,117,120708,117,120766,117,1405,117,66806,117,71896,117,8746,85,8899,85,119828,85,119880,85,119932,85,119984,85,120036,85,120088,85,120140,85,120192,85,120244,85,120296,85,120348,85,120400,85,120452,85,1357,85,4608,85,66766,85,5196,85,42228,85,94018,85,71864,85,8744,118,8897,118,65366,118,8564,118,119855,118,119907,118,119959,118,120011,118,120063,118,120115,118,120167,118,120219,118,120271,118,120323,118,120375,118,120427,118,120479,118,7456,118,957,118,120526,118,120584,118,120642,118,120700,118,120758,118,1141,118,1496,118,71430,118,43945,118,71872,118,119309,86,1639,86,1783,86,8548,86,119829,86,119881,86,119933,86,119985,86,120037,86,120089,86,120141,86,120193,86,120245,86,120297,86,120349,86,120401,86,120453,86,1140,86,11576,86,5081,86,5167,86,42719,86,42214,86,93960,86,71840,86,66845,86,623,119,119856,119,119908,119,119960,119,120012,119,120064,119,120116,119,120168,119,120220,119,120272,119,120324,119,120376,119,120428,119,120480,119,7457,119,1121,119,1309,119,1377,119,71434,119,71438,119,71439,119,43907,119,71919,87,71910,87,119830,87,119882,87,119934,87,119986,87,120038,87,120090,87,120142,87,120194,87,120246,87,120298,87,120350,87,120402,87,120454,87,1308,87,5043,87,5076,87,42218,87,5742,120,10539,120,10540,120,10799,120,65368,120,8569,120,119857,120,119909,120,119961,120,120013,120,120065,120,120117,120,120169,120,120221,120,120273,120,120325,120,120377,120,120429,120,120481,120,5441,120,5501,120,5741,88,9587,88,66338,88,71916,88,65336,88,8553,88,119831,88,119883,88,119935,88,119987,88,120039,88,120091,88,120143,88,120195,88,120247,88,120299,88,120351,88,120403,88,120455,88,42931,88,935,88,120510,88,120568,88,120626,88,120684,88,120742,88,11436,88,11613,88,5815,88,42219,88,66192,88,66228,88,66327,88,66855,88,611,121,7564,121,65369,121,119858,121,119910,121,119962,121,120014,121,120066,121,120118,121,120170,121,120222,121,120274,121,120326,121,120378,121,120430,121,120482,121,655,121,7935,121,43866,121,947,121,8509,121,120516,121,120574,121,120632,121,120690,121,120748,121,1199,121,4327,121,71900,121,65337,89,119832,89,119884,89,119936,89,119988,89,120040,89,120092,89,120144,89,120196,89,120248,89,120300,89,120352,89,120404,89,120456,89,933,89,978,89,120508,89,120566,89,120624,89,120682,89,120740,89,11432,89,1198,89,5033,89,5053,89,42220,89,94019,89,71844,89,66226,89,119859,122,119911,122,119963,122,120015,122,120067,122,120119,122,120171,122,120223,122,120275,122,120327,122,120379,122,120431,122,120483,122,7458,122,43923,122,71876,122,66293,90,71909,90,65338,90,8484,90,8488,90,119833,90,119885,90,119937,90,119989,90,120041,90,120197,90,120249,90,120301,90,120353,90,120405,90,120457,90,918,90,120493,90,120551,90,120609,90,120667,90,120725,90,5059,90,42204,90,71849,90,65282,34,65284,36,65285,37,65286,38,65290,42,65291,43,65294,46,65295,47,65296,48,65297,49,65298,50,65299,51,65300,52,65301,53,65302,54,65303,55,65304,56,65305,57,65308,60,65309,61,65310,62,65312,64,65316,68,65318,70,65319,71,65324,76,65329,81,65330,82,65333,85,65334,86,65335,87,65343,95,65346,98,65348,100,65350,102,65355,107,65357,109,65358,110,65361,113,65362,114,65364,116,65365,117,65367,119,65370,122,65371,123,65373,125,119846,109],"_default":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"cs":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"de":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"es":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"fr":[65374,126,65306,58,65281,33,8216,96,8245,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"it":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ja":[8211,45,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65292,44,65307,59],"ko":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pl":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pt-BR":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"qps-ploc":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ru":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,305,105,921,73,1009,112,215,120,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"tr":[160,32,8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"zh-hans":[65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65288,40,65289,41],"zh-hant":[8211,45,65374,126,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65307,59]}')); Nt.cache = new kc((t) => { function e(c) { const h = /* @__PURE__ */ new Map(); for (let u = 0; u < c.length; u += 2) h.set(c[u], c[u + 1]); return h; } function n(c, h) { const u = new Map(c); for (const [f, m] of h) u.set(f, m); return u; } function r(c, h) { if (!c) return h; const u = /* @__PURE__ */ new Map(); for (const [f, m] of c) h.has(f) && u.set(f, m); return u; } const i = Yt.ambiguousCharacterData.value; let s = t.filter((c) => !c.startsWith("_") && c in i); s.length === 0 && (s = ["_default"]); let a; for (const c of s) { const h = e(i[c]); a = r(a, h); } const o = e(i._common), l = n(o, a); return new Yt(l); }); Nt._locales = new sl(() => Object.keys(Yt.ambiguousCharacterData.value).filter((t) => !t.startsWith("_"))); class yt { static getRawData() { return JSON.parse("[9,10,11,12,13,32,127,160,173,847,1564,4447,4448,6068,6069,6155,6156,6157,6158,7355,7356,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8234,8235,8236,8237,8238,8239,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,10240,12288,12644,65024,65025,65026,65027,65028,65029,65030,65031,65032,65033,65034,65035,65036,65037,65038,65039,65279,65440,65520,65521,65522,65523,65524,65525,65526,65527,65528,65532,78844,119155,119156,119157,119158,119159,119160,119161,119162,917504,917505,917506,917507,917508,917509,917510,917511,917512,917513,917514,917515,917516,917517,917518,917519,917520,917521,917522,917523,917524,917525,917526,917527,917528,917529,917530,917531,917532,917533,917534,917535,917536,917537,917538,917539,917540,917541,917542,917543,917544,917545,917546,917547,917548,917549,917550,917551,917552,917553,917554,917555,917556,917557,917558,917559,917560,917561,917562,917563,917564,917565,917566,917567,917568,917569,917570,917571,917572,917573,917574,917575,917576,917577,917578,917579,917580,917581,917582,917583,917584,917585,917586,917587,917588,917589,917590,917591,917592,917593,917594,917595,917596,917597,917598,917599,917600,917601,917602,917603,917604,917605,917606,917607,917608,917609,917610,917611,917612,917613,917614,917615,917616,917617,917618,917619,917620,917621,917622,917623,917624,917625,917626,917627,917628,917629,917630,917631,917760,917761,917762,917763,917764,917765,917766,917767,917768,917769,917770,917771,917772,917773,917774,917775,917776,917777,917778,917779,917780,917781,917782,917783,917784,917785,917786,917787,917788,917789,917790,917791,917792,917793,917794,917795,917796,917797,917798,917799,917800,917801,917802,917803,917804,917805,917806,917807,917808,917809,917810,917811,917812,917813,917814,917815,917816,917817,917818,917819,917820,917821,917822,917823,917824,917825,917826,917827,917828,917829,917830,917831,917832,917833,917834,917835,917836,917837,917838,917839,917840,917841,917842,917843,917844,917845,917846,917847,917848,917849,917850,917851,917852,917853,917854,917855,917856,917857,917858,917859,917860,917861,917862,917863,917864,917865,917866,917867,917868,917869,917870,917871,917872,917873,917874,917875,917876,917877,917878,917879,917880,917881,917882,917883,917884,917885,917886,917887,917888,917889,917890,917891,917892,917893,917894,917895,917896,917897,917898,917899,917900,917901,917902,917903,917904,917905,917906,917907,917908,917909,917910,917911,917912,917913,917914,917915,917916,917917,917918,917919,917920,917921,917922,917923,917924,917925,917926,917927,917928,917929,917930,917931,917932,917933,917934,917935,917936,917937,917938,917939,917940,917941,917942,917943,917944,917945,917946,917947,917948,917949,917950,917951,917952,917953,917954,917955,917956,917957,917958,917959,917960,917961,917962,917963,917964,917965,917966,917967,917968,917969,917970,917971,917972,917973,917974,917975,917976,917977,917978,917979,917980,917981,917982,917983,917984,917985,917986,917987,917988,917989,917990,917991,917992,917993,917994,917995,917996,917997,917998,917999]"); } static getData() { return this._data || (this._data = new Set(yt.getRawData())), this._data; } static isInvisibleCharacter(e) { return yt.getData().has(e); } static get codePoints() { return yt.getData(); } } yt._data = void 0; const Lc = "$initialize"; class Pc { constructor(e, n, r, i) { this.vsWorker = e, this.req = n, this.method = r, this.args = i, this.type = 0; } } class ds { constructor(e, n, r, i) { this.vsWorker = e, this.seq = n, this.res = r, this.err = i, this.type = 1; } } class Ic { constructor(e, n, r, i) { this.vsWorker = e, this.req = n, this.eventName = r, this.arg = i, this.type = 2; } } class Tc { constructor(e, n, r) { this.vsWorker = e, this.req = n, this.event = r, this.type = 3; } } class Wc { constructor(e, n) { this.vsWorker = e, this.req = n, this.type = 4; } } class Oc { constructor(e) { this._workerId = -1, this._handler = e, this._lastSentReq = 0, this._pendingReplies = /* @__PURE__ */ Object.create(null), this._pendingEmitters = /* @__PURE__ */ new Map(), this._pendingEvents = /* @__PURE__ */ new Map(); } setWorkerId(e) { this._workerId = e; } sendMessage(e, n) { const r = String(++this._lastSentReq); return new Promise((i, s) => { this._pendingReplies[r] = { resolve: i, reject: s }, this._send(new Pc(this._workerId, r, e, n)); }); } listen(e, n) { let r = null; const i = new je({ onWillAddFirstListener: () => { r = String(++this._lastSentReq), this._pendingEmitters.set(r, i), this._send(new Ic(this._workerId, r, e, n)); }, onDidRemoveLastListener: () => { this._pendingEmitters.delete(r), this._send(new Wc(this._workerId, r)), r = null; } }); return i.event; } handleMessage(e) { !e || !e.vsWorker || this._workerId !== -1 && e.vsWorker !== this._workerId || this._handleMessage(e); } _handleMessage(e) { switch (e.type) { case 1: return this._handleReplyMessage(e); case 0: return this._handleRequestMessage(e); case 2: return this._handleSubscribeEventMessage(e); case 3: return this._handleEventMessage(e); case 4: return this._handleUnsubscribeEventMessage(e); } } _handleReplyMessage(e) { if (!this._pendingReplies[e.seq]) { console.warn("Got reply to unknown seq"); return; } const n = this._pendingReplies[e.seq]; if (delete this._pendingReplies[e.seq], e.err) { let r = e.err; e.err.$isError && (r = new Error(), r.name = e.err.name, r.message = e.err.message, r.stack = e.err.stack), n.reject(r); return; } n.resolve(e.res); } _handleRequestMessage(e) { const n = e.req; this._handler.handleMessage(e.method, e.args).then((i) => { this._send(new ds(this._workerId, n, i, void 0)); }, (i) => { i.detail instanceof Error && (i.detail = cs(i.detail)), this._send(new ds(this._workerId, n, void 0, cs(i))); }); } _handleSubscribeEventMessage(e) { const n = e.req, r = this._handler.handleEvent(e.eventName, e.arg)((i) => { this._send(new Tc(this._workerId, n, i)); }); this._pendingEvents.set(n, r); } _handleEventMessage(e) { if (!this._pendingEmitters.has(e.req)) { console.warn("Got event for unknown req"); return; } this._pendingEmitters.get(e.req).fire(e.event); } _handleUnsubscribeEventMessage(e) { if (!this._pendingEvents.has(e.req)) { console.warn("Got unsubscribe for unknown req"); return; } this._pendingEvents.get(e.req).dispose(), this._pendingEvents.delete(e.req); } _send(e) { const n = []; if (e.type === 0) for (let r = 0; r < e.args.length; r++) e.args[r] instanceof ArrayBuffer && n.push(e.args[r]); else e.type === 1 && e.res instanceof ArrayBuffer && n.push(e.res); this._handler.sendMessage(e, n); } } function ol(t) { return t[0] === "o" && t[1] === "n" && al(t.charCodeAt(2)); } function ll(t) { return /^onDynamic/.test(t) && al(t.charCodeAt(9)); } function Uc(t, e, n) { const r = (a) => function() { const o = Array.prototype.slice.call(arguments, 0); return e(a, o); }, i = (a) => function(o) { return n(a, o); }, s = {}; for (const a of t) { if (ll(a)) { s[a] = i(a); continue; } if (ol(a)) { s[a] = n(a, void 0); continue; } s[a] = r(a); } return s; } class Vc { constructor(e, n) { this._requestHandlerFactory = n, this._requestHandler = null, this._protocol = new Oc({ sendMessage: (r, i) => { e(r, i); }, handleMessage: (r, i) => this._handleMessage(r, i), handleEvent: (r, i) => this._handleEvent(r, i) }); } onmessage(e) { this._protocol.handleMessage(e); } _handleMessage(e, n) { if (e === Lc) return this.initialize(n[0], n[1], n[2], n[3]); if (!this._requestHandler || typeof this._requestHandler[e] != "function") return Promise.reject(new Error("Missing requestHandler or method: " + e)); try { return Promise.resolve(this._requestHandler[e].apply(this._requestHandler, n)); } catch (r) { return Promise.reject(r); } } _handleEvent(e, n) { if (!this._requestHandler) throw new Error("Missing requestHandler"); if (ll(e)) { const r = this._requestHandler[e].call(this._requestHandler, n); if (typeof r != "function") throw new Error(`Missing dynamic event ${e} on request handler.`); return r; } if (ol(e)) { const r = this._requestHandler[e]; if (typeof r != "function") throw new Error(`Missing event ${e} on request handler.`); return r; } throw new Error(`Malformed event name ${e}`); } initialize(e, n, r, i) { this._protocol.setWorkerId(e); const o = Uc(i, (l, c) => this._protocol.sendMessage(l, c), (l, c) => this._protocol.listen(l, c)); return this._requestHandlerFactory ? (this._requestHandler = this._requestHandlerFactory(o), Promise.resolve(Kr(this._requestHandler))) : (n && (typeof n.baseUrl < "u" && delete n.baseUrl, typeof n.paths < "u" && typeof n.paths.vs < "u" && delete n.paths.vs, typeof n.trustedTypesPolicy !== void 0 && delete n.trustedTypesPolicy, n.catchError = !0, globalThis.require.config(n)), new Promise((l, c) => { const h = globalThis.require; h([r], (u) => { if (this._requestHandler = u.create(o), !this._requestHandler) { c(new Error("No RequestHandler!")); return; } l(Kr(this._requestHandler)); }, c); })); } } class ft { /** * Constructs a new DiffChange with the given sequence information * and content. */ constructor(e, n, r, i) { this.originalStart = e, this.originalLength = n, this.modifiedStart = r, this.modifiedLength = i; } /** * The end point (exclusive) of the change in the original sequence. */ getOriginalEnd() { return this.originalStart + this.originalLength; } /** * The end point (exclusive) of the change in the modified sequence. */ getModifiedEnd() { return this.modifiedStart + this.modifiedLength; } } function us(t, e) { return (e << 5) - e + t | 0; } function Bc(t, e) { e = us(149417, e); for (let n = 0, r = t.length; n < r; n++) e = us(t.charCodeAt(n), e); return e; } class ps { constructor(e) { this.source = e; } getElements() { const e = this.source, n = new Int32Array(e.length); for (let r = 0, i = e.length; r < i; r++) n[r] = e.charCodeAt(r); return n; } } function qc(t, e, n) { return new gt(new ps(t), new ps(e)).ComputeDiff(n).changes; } class Mt { static Assert(e, n) { if (!e) throw new Error(n); } } class zt { /** * Copies a range of elements from an Array starting at the specified source index and pastes * them to another Array starting at the specified destination index. The length and the indexes * are specified as 64-bit integers. * sourceArray: * The Array that contains the data to copy. * sourceIndex: * A 64-bit integer that represents the index in the sourceArray at which copying begins. * destinationArray: * The Array that receives the data. * destinationIndex: * A 64-bit integer that represents the index in the destinationArray at which storing begins. * length: * A 64-bit integer that represents the number of elements to copy. */ static Copy(e, n, r, i, s) { for (let a = 0; a < s; a++) r[i + a] = e[n + a]; } static Copy2(e, n, r, i, s) { for (let a = 0; a < s; a++) r[i + a] = e[n + a]; } } class fs { /** * Constructs a new DiffChangeHelper for the given DiffSequences. */ constructor() { this.m_changes = [], this.m_originalStart = 1073741824, this.m_modifiedStart = 1073741824, this.m_originalCount = 0, this.m_modifiedCount = 0; } /** * Marks the beginning of the next change in the set of differences. */ MarkNextChange() { (this.m_originalCount > 0 || this.m_modifiedCount > 0) && this.m_changes.push(new ft(this.m_originalStart, this.m_originalCount, this.m_modifiedStart, this.m_modifiedCount)), this.m_originalCount = 0, this.m_modifiedCount = 0, this.m_originalStart = 1073741824, this.m_modifiedStart = 1073741824; } /** * Adds the original element at the given position to the elements * affected by the current change. The modified index gives context * to the change position with respect to the original sequence. * @param originalIndex The index of the original element to add. * @param modifiedIndex The index of the modified element that provides corresponding position in the modified sequence. */ AddOriginalElement(e, n) { this.m_originalStart = Math.min(this.m_originalStart, e), this.m_modifiedStart = Math.min(this.m_modifiedStart, n), this.m_originalCount++; } /** * Adds the modified element at the given position to the elements * affected by the current change. The original index gives context * to the change position with respect to the modified sequence. * @param originalIndex The index of the original element that provides corresponding position in the original sequence. * @param modifiedIndex The index of the modified element to add. */ AddModifiedElement(e, n) { this.m_originalStart = Math.min(this.m_originalStart, e), this.m_modifiedStart = Math.min(this.m_modifiedStart, n), this.m_modifiedCount++; } /** * Retrieves all of the changes marked by the class. */ getChanges() { return (this.m_originalCount > 0 || this.m_modifiedCount > 0) && this.MarkNextChange(), this.m_changes; } /** * Retrieves all of the changes marked by the class in the reverse order */ getReverseChanges() { return (this.m_originalCount > 0 || this.m_modifiedCount > 0) && this.MarkNextChange(), this.m_changes.reverse(), this.m_changes; } } class gt { /** * Constructs the DiffFinder */ constructor(e, n, r = null) { this.ContinueProcessingPredicate = r, this._originalSequence = e, this._modifiedSequence = n; const [i, s, a] = gt._getElements(e), [o, l, c] = gt._getElements(n); this._hasStrings = a && c, this._originalStringElements = i, this._originalElementsOrHash = s, this._modifiedStringElements = o, this._modifiedElementsOrHash = l, this.m_forwardHistory = [], this.m_reverseHistory = []; } static _isStringArray(e) { return e.length > 0 && typeof e[0] == "string"; } static _getElements(e) { const n = e.getElements(); if (gt._isStringArray(n)) { const r = new Int32Array(n.length); for (let i = 0, s = n.length; i < s; i++) r[i] = Bc(n[i], 0); return [n, r, !0]; } return n instanceof Int32Array ? [[], n, !1] : [[], new Int32Array(n), !1]; } ElementsAreEqual(e, n) { return this._originalElementsOrHash[e] !== this._modifiedElementsOrHash[n] ? !1 : this._hasStrings ? this._originalStringElements[e] === this._modifiedStringElements[n] : !0; } ElementsAreStrictEqual(e, n) { if (!this.ElementsAreEqual(e, n)) return !1; const r = gt._getStrictElement(this._originalSequence, e), i = gt._getStrictElement(this._modifiedSequence, n); return r === i; } static _getStrictElement(e, n) { return typeof e.getStrictElement == "function" ? e.getStrictElement(n) : null; } OriginalElementsAreEqual(e, n) { return this._originalElementsOrHash[e] !== this._originalElementsOrHash[n] ? !1 : this._hasStrings ? this._originalStringElements[e] === this._originalStringElements[n] : !0; } ModifiedElementsAreEqual(e, n) { return this._modifiedElementsOrHash[e] !== this._modifiedElementsOrHash[n] ? !1 : this._hasStrings ? this._modifiedStringElements[e] === this._modifiedStringElements[n] : !0; } ComputeDiff(e) { return this._ComputeDiff(0, this._originalElementsOrHash.length - 1, 0, this._modifiedElementsOrHash.length - 1, e); } /** * Computes the differences between the original and modified input * sequences on the bounded range. * @returns An array of the differences between the two input sequences. */ _ComputeDiff(e, n, r, i, s) { const a = [!1]; let o = this.ComputeDiffRecursive(e, n, r, i, a); return s && (o = this.PrettifyChanges(o)), { quitEarly: a[0], changes: o }; } /** * Private helper method which computes the differences on the bounded range * recursively. * @returns An array of the differences between the two input sequences. */ ComputeDiffRecursive(e, n, r, i, s) { for (s[0] = !1; e <= n && r <= i && this.ElementsAreEqual(e, r); ) e++, r++; for (; n >= e && i >= r && this.ElementsAreEqual(n, i); ) n--, i--; if (e > n || r > i) { let u; return r <= i ? (Mt.Assert(e === n + 1, "originalStart should only be one more than originalEnd"), u = [ new ft(e, 0, r, i - r + 1) ]) : e <= n ? (Mt.Assert(r === i + 1, "modifiedStart should only be one more than modifiedEnd"), u = [ new ft(e, n - e + 1, r, 0) ]) : (Mt.Assert(e === n + 1, "originalStart should only be one more than originalEnd"), Mt.Assert(r === i + 1, "modifiedStart should only be one more than modifiedEnd"), u = []), u; } const a = [0], o = [0], l = this.ComputeRecursionPoint(e, n, r, i, a, o, s), c = a[0], h = o[0]; if (l !== null) return l; if (!s[0]) { const u = this.ComputeDiffRecursive(e, c, r, h, s); let f = []; return s[0] ? f = [ new ft(c + 1, n - (c + 1) + 1, h + 1, i - (h + 1) + 1) ] : f = this.ComputeDiffRecursive(c + 1, n, h + 1, i, s), this.ConcatenateChanges(u, f); } return [ new ft(e, n - e + 1, r, i - r + 1) ]; } WALKTRACE(e, n, r, i, s, a, o, l, c, h, u, f, m, g, b, y, k, w) { let S = null, F = null, E = new fs(), P = n, T = r, W = m[0] - y[0] - i, H = -1073741824, re = this.m_forwardHistory.length - 1; do { const X = W + e; X === P || X < T && c[X - 1] < c[X + 1] ? (u = c[X + 1], g = u - W - i, u < H && E.MarkNextChange(), H = u, E.AddModifiedElement(u + 1, g), W = X + 1 - e) : (u = c[X - 1] + 1, g = u - W - i, u < H && E.MarkNextChange(), H = u - 1, E.AddOriginalElement(u, g + 1), W = X - 1 - e), re >= 0 && (c = this.m_forwardHistory[re], e = c[0], P = 1, T = c.length - 1); } while (--re >= -1); if (S = E.getReverseChanges(), w[0]) { let X = m[0] + 1, D = y[0] + 1; if (S !== null && S.length > 0) { const N = S[S.length - 1]; X = Math.max(X, N.getOriginalEnd()), D = Math.max(D, N.getModifiedEnd()); } F = [ new ft(X, f - X + 1, D, b - D + 1) ]; } else { E = new fs(), P = a, T = o, W = m[0] - y[0] - l, H = 1073741824, re = k ? this.m_reverseHistory.length - 1 : this.m_reverseHistory.length - 2; do { const X = W + s; X === P || X < T && h[X - 1] >= h[X + 1] ? (u = h[X + 1] - 1, g = u - W - l, u > H && E.MarkNextChange(), H = u + 1, E.AddOriginalElement(u + 1, g + 1), W = X + 1 - s) : (u = h[X - 1], g = u - W - l, u > H && E.MarkNextChange(), H = u, E.AddModifiedElement(u + 1, g + 1), W = X - 1 - s), re >= 0 && (h = this.m_reverseHistory[re], s = h[0], P = 1, T = h.length - 1); } while (--re >= -1); F = E.getChanges(); } return this.ConcatenateChanges(S, F); } /** * Given the range to compute the diff on, this method finds the point: * (midOriginal, midModified) * that exists in the middle of the LCS of the two sequences and * is the point at which the LCS problem may be broken down recursively. * This method will try to keep the LCS trace in memory. If the LCS recursion * point is calculated and the full trace is available in memory, then this method * will return the change list. * @param originalStart The start bound of the original sequence range * @param originalEnd The end bound of the original sequence range * @param modifiedStart The start bound of the modified sequence range * @param modifiedEnd The end bound of the modified sequence range * @param midOriginal The middle point of the original sequence range * @param midModified The middle point of the modified sequence range * @returns The diff changes, if available, otherwise null */ ComputeRecursionPoint(e, n, r, i, s, a, o) { let l = 0, c = 0, h = 0, u = 0, f = 0, m = 0; e--, r--, s[0] = 0, a[0] = 0, this.m_forwardHistory = [], this.m_reverseHistory = []; const g = n - e + (i - r), b = g + 1, y = new Int32Array(b), k = new Int32Array(b), w = i - r, S = n - e, F = e - r, E = n - i, T = (S - w) % 2 === 0; y[w] = e, k[S] = n, o[0] = !1; for (let W = 1; W <= g / 2 + 1; W++) { let H = 0, re = 0; h = this.ClipDiagonalBound(w - W, W, w, b), u = this.ClipDiagonalBound(w + W, W, w, b); for (let D = h; D <= u; D += 2) { D === h || D < u && y[D - 1] < y[D + 1] ? l = y[D + 1] : l = y[D - 1] + 1, c = l - (D - w) - F; const N = l; for (; l < n && c < i && this.ElementsAreEqual(l + 1, c + 1); ) l++, c++; if (y[D] = l, l + c > H + re && (H = l, re = c), !T && Math.abs(D - S) <= W - 1 && l >= k[D]) return s[0] = l, a[0] = c, N <= k[D] && 1447 > 0 && W <= 1447 + 1 ? this.WALKTRACE(w, h, u, F, S, f, m, E, y, k, l, n, s, c, i, a, T, o) : null; } const X = (H - e + (re - r) - W) / 2; if (this.ContinueProcessingPredicate !== null && !this.ContinueProcessingPredicate(H, X)) return o[0] = !0, s[0] = H, a[0] = re, X > 0 && 1447 > 0 && W <= 1447 + 1 ? this.WALKTRACE(w, h, u, F, S, f, m, E, y, k, l, n, s, c, i, a, T, o) : (e++, r++, [ new ft(e, n - e + 1, r, i - r + 1) ]); f = this.ClipDiagonalBound(S - W, W, S, b), m = this.ClipDiagonalBound(S + W, W, S, b); for (let D = f; D <= m; D += 2) { D === f || D < m && k[D - 1] >= k[D + 1] ? l = k[D + 1] - 1 : l = k[D - 1], c = l - (D - S) - E; const N = l; for (; l > e && c > r && this.ElementsAreEqual(l, c); ) l--, c--; if (k[D] = l, T && Math.abs(D - w) <= W && l <= y[D]) return s[0] = l, a[0] = c, N >= y[D] && 1447 > 0 && W <= 1447 + 1 ? this.WALKTRACE(w, h, u, F, S, f, m, E, y, k, l, n, s, c, i, a, T, o) : null; } if (W <= 1447) { let D = new Int32Array(u - h + 2); D[0] = w - h + 1, zt.Copy2(y, h, D, 1, u - h + 1), this.m_forwardHistory.push(D), D = new Int32Array(m - f + 2), D[0] = S - f + 1, zt.Copy2(k, f, D, 1, m - f + 1), this.m_reverseHistory.push(D); } } return this.WALKTRACE(w, h, u, F, S, f, m, E, y, k, l, n, s, c, i, a, T, o); } /** * Shifts the given changes to provide a more intuitive diff. * While the first element in a diff matches the first element after the diff, * we shift the diff down. * * @param changes The list of changes to shift * @returns The shifted changes */ PrettifyChanges(e) { for (let n = 0; n < e.length; n++) { const r = e[n], i = n < e.length - 1 ? e[n + 1].originalStart : this._originalElementsOrHash.length, s = n < e.length - 1 ? e[n + 1].modifiedStart : this._modifiedElementsOrHash.length, a = r.originalLength > 0, o = r.modifiedLength > 0; for (; r.originalStart + r.originalLength < i && r.modifiedStart + r.modifiedLength < s && (!a || this.OriginalElementsAreEqual(r.originalStart, r.originalStart + r.originalLength)) && (!o || this.ModifiedElementsAreEqual(r.modifiedStart, r.modifiedStart + r.modifiedLength)); ) { const c = this.ElementsAreStrictEqual(r.originalStart, r.modifiedStart); if (this.ElementsAreStrictEqual(r.originalStart + r.originalLength, r.modifiedStart + r.modifiedLength) && !c) break; r.originalStart++, r.modifiedStart++; } const l = [null]; if (n < e.length - 1 && this.ChangesOverlap(e[n], e[n + 1], l)) { e[n] = l[0], e.splice(n + 1, 1), n--; continue; } } for (let n = e.length - 1; n >= 0; n--) { const r = e[n]; let i = 0, s = 0; if (n > 0) { const u = e[n - 1]; i = u.originalStart + u.originalLength, s = u.modifiedStart + u.modifiedLength; } const a = r.originalLength > 0, o = r.modifiedLength > 0; let l = 0, c = this._boundaryScore(r.originalStart, r.originalLength, r.modifiedStart, r.modifiedLength); for (let u = 1; ; u++) { const f = r.originalStart - u, m = r.modifiedStart - u; if (f < i || m < s || a && !this.OriginalElementsAreEqual(f, f + r.originalLength) || o && !this.ModifiedElementsAreEqual(m, m + r.modifiedLength)) break; const b = (f === i && m === s ? 5 : 0) + this._boundaryScore(f, r.originalLength, m, r.modifiedLength); b > c && (c = b, l = u); } r.originalStart -= l, r.modifiedStart -= l; const h = [null]; if (n > 0 && this.ChangesOverlap(e[n - 1], e[n], h)) { e[n - 1] = h[0], e.splice(n, 1), n++; continue; } } if (this._hasStrings) for (let n = 1, r = e.length; n < r; n++) { const i = e[n - 1], s = e[n], a = s.originalStart - i.originalStart - i.originalLength, o = i.originalStart, l = s.originalStart + s.originalLength, c = l - o, h = i.modifiedStart, u = s.modifiedStart + s.modifiedLength, f = u - h; if (a < 5 && c < 20 && f < 20) { const m = this._findBetterContiguousSequence(o, c, h, f, a); if (m) { const [g, b] = m; (g !== i.originalStart + i.originalLength || b !== i.modifiedStart + i.modifiedLength) && (i.originalLength = g - i.originalStart, i.modifiedLength = b - i.modifiedStart, s.originalStart = g + a, s.modifiedStart = b + a, s.originalLength = l - s.originalStart, s.modifiedLength = u - s.modifiedStart); } } } return e; } _findBetterContiguousSequence(e, n, r, i, s) { if (n < s || i < s) return null; const a = e + n - s + 1, o = r + i - s + 1; let l = 0, c = 0, h = 0; for (let u = e; u < a; u++) for (let f = r; f < o; f++) { const m = this._contiguousSequenceScore(u, f, s); m > 0 && m > l && (l = m, c = u, h = f); } return l > 0 ? [c, h] : null; } _contiguousSequenceScore(e, n, r) { let i = 0; for (let s = 0; s < r; s++) { if (!this.ElementsAreEqual(e + s, n + s)) return 0; i += this._originalStringElements[e + s].length; } return i; } _OriginalIsBoundary(e) { return e <= 0 || e >= this._originalElementsOrHash.length - 1 ? !0 : this._hasStrings && /^\s*$/.test(this._originalStringElements[e]); } _OriginalRegionIsBoundary(e, n) { if (this._OriginalIsBoundary(e) || this._OriginalIsBoundary(e - 1)) return !0; if (n > 0) { const r = e + n; if (this._OriginalIsBoundary(r - 1) || this._OriginalIsBoundary(r)) return !0; } return !1; } _ModifiedIsBoundary(e) { return e <= 0 || e >= this._modifiedElementsOrHash.length - 1 ? !0 : this._hasStrings && /^\s*$/.test(this._modifiedStringElements[e]); } _ModifiedRegionIsBoundary(e, n) { if (this._ModifiedIsBoundary(e) || this._ModifiedIsBoundary(e - 1)) return !0; if (n > 0) { const r = e + n; if (this._ModifiedIsBoundary(r - 1) || this._ModifiedIsBoundary(r)) return !0; } return !1; } _boundaryScore(e, n, r, i) { const s = this._OriginalRegionIsBoundary(e, n) ? 1 : 0, a = this._ModifiedRegionIsBoundary(r, i) ? 1 : 0; return s + a; } /** * Concatenates the two input DiffChange lists and returns the resulting * list. * @param The left changes * @param The right changes * @returns The concatenated list */ ConcatenateChanges(e, n) { const r = []; if (e.length === 0 || n.length === 0) return n.length > 0 ? n : e; if (this.ChangesOverlap(e[e.length - 1], n[0], r)) { const i = new Array(e.length + n.length - 1); return zt.Copy(e, 0, i, 0, e.length - 1), i[e.length - 1] = r[0], zt.Copy(n, 1, i, e.length, n.length - 1), i; } else { const i = new Array(e.length + n.length); return zt.Copy(e, 0, i, 0, e.length), zt.Copy(n, 0, i, e.length, n.length), i; } } /** * Returns true if the two changes overlap and can be merged into a single * change * @param left The left change * @param right The right change * @param mergedChange The merged change if the two overlap, null otherwise * @returns True if the two changes overlap */ ChangesOverlap(e, n, r) { if (Mt.Assert(e.originalStart <= n.originalStart, "Left change is not less than or equal to right change"), Mt.Assert(e.modifiedStart <= n.modifiedStart, "Left change is not less than or equal to right change"), e.originalStart + e.originalLength >= n.originalStart || e.modifiedStart + e.modifiedLength >= n.modifiedStart) { const i = e.originalStart; let s = e.originalLength; const a = e.modifiedStart; let o = e.modifiedLength; return e.originalStart + e.originalLength >= n.originalStart && (s = n.originalStart + n.originalLength - e.originalStart), e.modifiedStart + e.modifiedLength >= n.modifiedStart && (o = n.modifiedStart + n.modifiedLength - e.modifiedStart), r[0] = new ft(i, s, a, o), !0; } else return r[0] = null, !1; } /** * Helper method used to clip a diagonal index to the range of valid * diagonals. This also decides whether or not the diagonal index, * if it exceeds the boundary, should be clipped to the boundary or clipped * one inside the boundary depending on the Even/Odd status of the boundary * and numDifferences. * @param diagonal The index of the diagonal to clip. * @param numDifferences The current number of differences being iterated upon. * @param diagonalBaseIndex The base reference diagonal. * @param numDiagonals The total number of diagonals. * @returns The clipped diagonal index. */ ClipDiagonalBound(e, n, r, i) { if (e >= 0 && e < i) return e; const s = r, a = i - r - 1, o = n % 2 === 0; if (e < 0) { const l = s % 2 === 0; return o === l ? 0 : 1; } else { const l = a % 2 === 0; return o === l ? i - 1 : i - 2; } } } let qt; if (typeof He.vscode < "u" && typeof He.vscode.process < "u") { const t = He.vscode.process; qt = { get platform() { return t.platform; }, get arch() { return t.arch; }, get env() { return t.env; }, cwd() { return t.cwd(); } }; } else typeof process < "u" ? qt = { get platform() { return process.platform; }, get arch() { return process.arch; }, get env() { return process.env; }, cwd() { return process.env.VSCODE_CWD || process.cwd(); } } : qt = { // Supported get platform() { return xn ? "win32" : xc ? "darwin" : "linux"; }, get arch() { }, // Unsupported get env() { return {}; }, cwd() { return "/"; } }; const sr = qt.cwd, jc = qt.env, $c = qt.platform, Hc = 65, Gc = 97, Jc = 90, Xc = 122, wt = 46, Se = 47, Ae = 92, ht = 58, Yc = 63; class cl extends Error { constructor(e, n, r) { let i; typeof n == "string" && n.indexOf("not ") === 0 ? (i = "must not be", n = n.replace(/^not /, "")) : i = "must be"; const s = e.indexOf(".") !== -1 ? "property" : "argument"; let a = `The "${e}" ${s} ${i} of type ${n}`; a += `. Received type ${typeof r}`, super(a), this.code = "ERR_INVALID_ARG_TYPE"; } } function Kc(t, e) { if (t === null || typeof t != "object") throw new cl(e, "Object", t); } function he(t, e) { if (typeof t != "string") throw new cl(e, "string", t); } const Ct = $c === "win32"; function Y(t) { return t === Se || t === Ae; } function ti(t) { return t === Se; } function dt(t) { return t >= Hc && t <= Jc || t >= Gc && t <= Xc; } function ar(t, e, n, r) { let i = "", s = 0, a = -1, o = 0, l = 0; for (let c = 0; c <= t.length; ++c) { if (c < t.length) l = t.charCodeAt(c); else { if (r(l)) break; l = Se; } if (r(l)) { if (!(a === c - 1 || o === 1)) if (o === 2) { if (i.length < 2 || s !== 2 || i.charCodeAt(i.length - 1) !== wt || i.charCodeAt(i.length - 2) !== wt) { if (i.length > 2) { const h = i.lastIndexOf(n); h === -1 ? (i = "", s = 0) : (i = i.slice(0, h), s = i.length - 1 - i.lastIndexOf(n)), a = c, o = 0; continue; } else if (i.length !== 0) { i = "", s = 0, a = c, o = 0; continue; } } e && (i += i.length > 0 ? `${n}..` : "..", s = 2); } else i.length > 0 ? i += `${n}${t.slice(a + 1, c)}` : i = t.slice(a + 1, c), s = c - a - 1; a = c, o = 0; } else l === wt && o !== -1 ? ++o : o = -1; } return i; } function hl(t, e) { Kc(e, "pathObject"); const n = e.dir || e.root, r = e.base || `${e.name || ""}${e.ext || ""}`; return n ? n === e.root ? `${n}${r}` : `${n}${t}${r}` : r; } const De = { // path.resolve([from ...], to) resolve(...t) { let e = "", n = "", r = !1; for (let i = t.length - 1; i >= -1; i--) { let s; if (i >= 0) { if (s = t[i], he(s, "path"), s.length === 0) continue; } else e.length === 0 ? s = sr() : (s = jc[`=${e}`] || sr(), (s === void 0 || s.slice(0, 2).toLowerCase() !== e.toLowerCase() && s.charCodeAt(2) === Ae) && (s = `${e}\\`)); const a = s.length; let o = 0, l = "", c = !1; const h = s.charCodeAt(0); if (a === 1) Y(h) && (o = 1, c = !0); else if (Y(h)) if (c = !0, Y(s.charCodeAt(1))) { let u = 2, f = u; for (; u < a && !Y(s.charCodeAt(u)); ) u++; if (u < a && u !== f) { const m = s.slice(f, u); for (f = u; u < a && Y(s.charCodeAt(u)); ) u++; if (u < a && u !== f) { for (f = u; u < a && !Y(s.charCodeAt(u)); ) u++; (u === a || u !== f) && (l = `\\\\${m}\\${s.slice(f, u)}`, o = u); } } } else o = 1; else dt(h) && s.charCodeAt(1) === ht && (l = s.slice(0, 2), o = 2, a > 2 && Y(s.charCodeAt(2)) && (c = !0, o = 3)); if (l.length > 0) if (e.length > 0) { if (l.toLowerCase() !== e.toLowerCase()) continue; } else e = l; if (r) { if (e.length > 0) break; } else if (n = `${s.slice(o)}\\${n}`, r = c, c && e.length > 0) break; } return n = ar(n, !r, "\\", Y), r ? `${e}\\${n}` : `${e}${n}` || "."; }, normalize(t) { he(t, "path"); const e = t.length; if (e === 0) return "."; let n = 0, r, i = !1; const s = t.charCodeAt(0); if (e === 1) return ti(s) ? "\\" : t; if (Y(s)) if (i = !0, Y(t.charCodeAt(1))) { let o = 2, l = o; for (; o < e && !Y(t.charCodeAt(o)); ) o++; if (o < e && o !== l) { const c = t.slice(l, o); for (l = o; o < e && Y(t.charCodeAt(o)); ) o++; if (o < e && o !== l) { for (l = o; o < e && !Y(t.charCodeAt(o)); ) o++; if (o === e) return `\\\\${c}\\${t.slice(l)}\\`; o !== l && (r = `\\\\${c}\\${t.slice(l, o)}`, n = o); } } } else n = 1; else dt(s) && t.charCodeAt(1) === ht && (r = t.slice(0, 2), n = 2, e > 2 && Y(t.charCodeAt(2)) && (i = !0, n = 3)); let a = n < e ? ar(t.slice(n), !i, "\\", Y) : ""; return a.length === 0 && !i && (a = "."), a.length > 0 && Y(t.charCodeAt(e - 1)) && (a += "\\"), r === void 0 ? i ? `\\${a}` : a : i ? `${r}\\${a}` : `${r}${a}`; }, isAbsolute(t) { he(t, "path"); const e = t.length; if (e === 0) return !1; const n = t.charCodeAt(0); return Y(n) || // Possible device root e > 2 && dt(n) && t.charCodeAt(1) === ht && Y(t.charCodeAt(2)); }, join(...t) { if (t.length === 0) return "."; let e, n; for (let s = 0; s < t.length; ++s) { const a = t[s]; he(a, "path"), a.length > 0 && (e === void 0 ? e = n = a : e += `\\${a}`); } if (e === void 0) return "."; let r = !0, i = 0; if (typeof n == "string" && Y(n.charCodeAt(0))) { ++i; const s = n.length; s > 1 && Y(n.charCodeAt(1)) && (++i, s > 2 && (Y(n.charCodeAt(2)) ? ++i : r = !1)); } if (r) { for (; i < e.length && Y(e.charCodeAt(i)); ) i++; i >= 2 && (e = `\\${e.slice(i)}`); } return De.normalize(e); }, // It will solve the relative path from `from` to `to`, for instance: // from = 'C:\\orandea\\test\\aaa' // to = 'C:\\orandea\\impl\\bbb' // The output of the function should be: '..\\..\\impl\\bbb' relative(t, e) { if (he(t, "from"), he(e, "to"), t === e) return ""; const n = De.resolve(t), r = De.resolve(e); if (n === r || (t = n.toLowerCase(), e = r.toLowerCase(), t === e)) return ""; let i = 0; for (; i < t.length && t.charCodeAt(i) === Ae; ) i++; let s = t.length; for (; s - 1 > i && t.charCodeAt(s - 1) === Ae; ) s--; const a = s - i; let o = 0; for (; o < e.length && e.charCodeAt(o) === Ae; ) o++; let l = e.length; for (; l - 1 > o && e.charCodeAt(l - 1) === Ae; ) l--; const c = l - o, h = a < c ? a : c; let u = -1, f = 0; for (; f < h; f++) { const g = t.charCodeAt(i + f); if (g !== e.charCodeAt(o + f)) break; g === Ae && (u = f); } if (f !== h) { if (u === -1) return r; } else { if (c > h) { if (e.charCodeAt(o + f) === Ae) return r.slice(o + f + 1); if (f === 2) return r.slice(o + f); } a > h && (t.charCodeAt(i + f) === Ae ? u = f : f === 2 && (u = 3)), u === -1 && (u = 0); } let m = ""; for (f = i + u + 1; f <= s; ++f) (f === s || t.charCodeAt(f) === Ae) && (m += m.length === 0 ? ".." : "\\.."); return o += u, m.length > 0 ? `${m}${r.slice(o, l)}` : (r.charCodeAt(o) === Ae && ++o, r.slice(o, l)); }, toNamespacedPath(t) { if (typeof t != "string" || t.length === 0) return t; const e = De.resolve(t); if (e.length <= 2) return t; if (e.charCodeAt(0) === Ae) { if (e.charCodeAt(1) === Ae) { const n = e.charCodeAt(2); if (n !== Yc && n !== wt) return `\\\\?\\UNC\\${e.slice(2)}`; } } else if (dt(e.charCodeAt(0)) && e.charCodeAt(1) === ht && e.charCodeAt(2) === Ae) return `\\\\?\\${e}`; return t; }, dirname(t) { he(t, "path"); const e = t.length; if (e === 0) return "."; let n = -1, r = 0; const i = t.charCodeAt(0); if (e === 1) return Y(i) ? t : "."; if (Y(i)) { if (n = r = 1, Y(t.charCodeAt(1))) { let o = 2, l = o; for (; o < e && !Y(t.charCodeAt(o)); ) o++; if (o < e && o !== l) { for (l = o; o < e && Y(t.charCodeAt(o)); ) o++; if (o < e && o !== l) { for (l = o; o < e && !Y(t.charCodeAt(o)); ) o++; if (o === e) return t; o !== l && (n = r = o + 1); } } } } else dt(i) && t.charCodeAt(1) === ht && (n = e > 2 && Y(t.charCodeAt(2)) ? 3 : 2, r = n); let s = -1, a = !0; for (let o = e - 1; o >= r; --o) if (Y(t.charCodeAt(o))) { if (!a) { s = o; break; } } else a = !1; if (s === -1) { if (n === -1) return "."; s = n; } return t.slice(0, s); }, basename(t, e) { e !== void 0 && he(e, "ext"), he(t, "path"); let n = 0, r = -1, i = !0, s; if (t.length >= 2 && dt(t.charCodeAt(0)) && t.charCodeAt(1) === ht && (n = 2), e !== void 0 && e.length > 0 && e.length <= t.length) { if (e === t) return ""; let a = e.length - 1, o = -1; for (s = t.length - 1; s >= n; --s) { const l = t.charCodeAt(s); if (Y(l)) { if (!i) { n = s + 1; break; } } else o === -1 && (i = !1, o = s + 1), a >= 0 && (l === e.charCodeAt(a) ? --a === -1 && (r = s) : (a = -1, r = o)); } return n === r ? r = o : r === -1 && (r = t.length), t.slice(n, r); } for (s = t.length - 1; s >= n; --s) if (Y(t.charCodeAt(s))) { if (!i) { n = s + 1; break; } } else r === -1 && (i = !1, r = s + 1); return r === -1 ? "" : t.slice(n, r); }, extname(t) { he(t, "path"); let e = 0, n = -1, r = 0, i = -1, s = !0, a = 0; t.length >= 2 && t.charCodeAt(1) === ht && dt(t.charCodeAt(0)) && (e = r = 2); for (let o = t.length - 1; o >= e; --o) { const l = t.charCodeAt(o); if (Y(l)) { if (!s) { r = o + 1; break; } continue; } i === -1 && (s = !1, i = o + 1), l === wt ? n === -1 ? n = o : a !== 1 && (a = 1) : n !== -1 && (a = -1); } return n === -1 || i === -1 || // We saw a non-dot character immediately before the dot a === 0 || // The (right-most) trimmed path component is exactly '..' a === 1 && n === i - 1 && n === r + 1 ? "" : t.slice(n, i); }, format: hl.bind(null, "\\"), parse(t) { he(t, "path"); const e = { root: "", dir: "", base: "", ext: "", name: "" }; if (t.length === 0) return e; const n = t.length; let r = 0, i = t.charCodeAt(0); if (n === 1) return Y(i) ? (e.root = e.dir = t, e) : (e.base = e.name = t, e); if (Y(i)) { if (r = 1, Y(t.charCodeAt(1))) { let u = 2, f = u; for (; u < n && !Y(t.charCodeAt(u)); ) u++; if (u < n && u !== f) { for (f = u; u < n && Y(t.charCodeAt(u)); ) u++; if (u < n && u !== f) { for (f = u; u < n && !Y(t.charCodeAt(u)); ) u++; u === n ? r = u : u !== f && (r = u + 1); } } } } else if (dt(i) && t.charCodeAt(1) === ht) { if (n <= 2) return e.root = e.dir = t, e; if (r = 2, Y(t.charCodeAt(2))) { if (n === 3) return e.root = e.dir = t, e; r = 3; } } r > 0 && (e.root = t.slice(0, r)); let s = -1, a = r, o = -1, l = !0, c = t.length - 1, h = 0; for (; c >= r; --c) { if (i = t.charCodeAt(c), Y(i)) { if (!l) { a = c + 1; break; } continue; } o === -1 && (l = !1, o = c + 1), i === wt ? s === -1 ? s = c : h !== 1 && (h = 1) : s !== -1 && (h = -1); } return o !== -1 && (s === -1 || // We saw a non-dot character immediately before the dot h === 0 || // The (right-most) trimmed path component is exactly '..' h === 1 && s === o - 1 && s === a + 1 ? e.base = e.name = t.slice(a, o) : (e.name = t.slice(a, s), e.base = t.slice(a, o), e.ext = t.slice(s, o))), a > 0 && a !== r ? e.dir = t.slice(0, a - 1) : e.dir = e.root, e; }, sep: "\\", delimiter: ";", win32: null, posix: null }, Qc = (() => { if (Ct) { const t = /\\/g; return () => { const e = sr().replace(t, "/"); return e.slice(e.indexOf("/")); }; } return () => sr(); })(), Ne = { // path.resolve([from ...], to) resolve(...t) { let e = "", n = !1; for (let r = t.length - 1; r >= -1 && !n; r--) { const i = r >= 0 ? t[r] : Qc(); he(i, "path"), i.length !== 0 && (e = `${i}/${e}`, n = i.charCodeAt(0) === Se); } return e = ar(e, !n, "/", ti), n ? `/${e}` : e.length > 0 ? e : "."; }, normalize(t) { if (he(t, "path"), t.length === 0) return "."; const e = t.charCodeAt(0) === Se, n = t.charCodeAt(t.length - 1) === Se; return t = ar(t, !e, "/", ti), t.length === 0 ? e ? "/" : n ? "./" : "." : (n && (t += "/"), e ? `/${t}` : t); }, isAbsolute(t) { return he(t, "path"), t.length > 0 && t.charCodeAt(0) === Se; }, join(...t) { if (t.length === 0) return "."; let e; for (let n = 0; n < t.length; ++n) { const r = t[n]; he(r, "path"), r.length > 0 && (e === void 0 ? e = r : e += `/${r}`); } return e === void 0 ? "." : Ne.normalize(e); }, relative(t, e) { if (he(t, "from"), he(e, "to"), t === e || (t = Ne.resolve(t), e = Ne.resolve(e), t === e)) return ""; const n = 1, r = t.length, i = r - n, s = 1, a = e.length - s, o = i < a ? i : a; let l = -1, c = 0; for (; c < o; c++) { const u = t.charCodeAt(n + c); if (u !== e.charCodeAt(s + c)) break; u === Se && (l = c); } if (c === o) if (a > o) { if (e.charCodeAt(s + c) === Se) return e.slice(s + c + 1); if (c === 0) return e.slice(s + c); } else i > o && (t.charCodeAt(n + c) === Se ? l = c : c === 0 && (l = 0)); let h = ""; for (c = n + l + 1; c <= r; ++c) (c === r || t.charCodeAt(c) === Se) && (h += h.length === 0 ? ".." : "/.."); return `${h}${e.slice(s + l)}`; }, toNamespacedPath(t) { return t; }, dirname(t) { if (he(t, "path"), t.length === 0) return "."; const e = t.charCodeAt(0) === Se; let n = -1, r = !0; for (let i = t.length - 1; i >= 1; --i) if (t.charCodeAt(i) === Se) { if (!r) { n = i; break; } } else r = !1; return n === -1 ? e ? "/" : "." : e && n === 1 ? "//" : t.slice(0, n); }, basename(t, e) { e !== void 0 && he(e, "ext"), he(t, "path"); let n = 0, r = -1, i = !0, s; if (e !== void 0 && e.length > 0 && e.length <= t.length) { if (e === t) return ""; let a = e.length - 1, o = -1; for (s = t.length - 1; s >= 0; --s) { const l = t.charCodeAt(s); if (l === Se) { if (!i) { n = s + 1; break; } } else o === -1 && (i = !1, o = s + 1), a >= 0 && (l === e.charCodeAt(a) ? --a === -1 && (r = s) : (a = -1, r = o)); } return n === r ? r = o : r === -1 && (r = t.length), t.slice(n, r); } for (s = t.length - 1; s >= 0; --s) if (t.charCodeAt(s) === Se) { if (!i) { n = s + 1; break; } } else r === -1 && (i = !1, r = s + 1); return r === -1 ? "" : t.slice(n, r); }, extname(t) { he(t, "path"); let e = -1, n = 0, r = -1, i = !0, s = 0; for (let a = t.length - 1; a >= 0; --a) { const o = t.charCodeAt(a); if (o === Se) { if (!i) { n = a + 1; break; } continue; } r === -1 && (i = !1, r = a + 1), o === wt ? e === -1 ? e = a : s !== 1 && (s = 1) : e !== -1 && (s = -1); } return e === -1 || r === -1 || // We saw a non-dot character immediately before the dot s === 0 || // The (right-most) trimmed path component is exactly '..' s === 1 && e === r - 1 && e === n + 1 ? "" : t.slice(e, r); }, format: hl.bind(null, "/"), parse(t) { he(t, "path"); const e = { root: "", dir: "", base: "", ext: "", name: "" }; if (t.length === 0) return e; const n = t.charCodeAt(0) === Se; let r; n ? (e.root = "/", r = 1) : r = 0; let i = -1, s = 0, a = -1, o = !0, l = t.length - 1, c = 0; for (; l >= r; --l) { const h = t.charCodeAt(l); if (h === Se) { if (!o) { s = l + 1; break; } continue; } a === -1 && (o = !1, a = l + 1), h === wt ? i === -1 ? i = l : c !== 1 && (c = 1) : i !== -1 && (c = -1); } if (a !== -1) { const h = s === 0 && n ? 1 : s; i === -1 || // We saw a non-dot character immediately before the dot c === 0 || // The (right-most) trimmed path component is exactly '..' c === 1 && i === a - 1 && i === s + 1 ? e.base = e.name = t.slice(h, a) : (e.name = t.slice(h, i), e.base = t.slice(h, a), e.ext = t.slice(i, a)); } return s > 0 ? e.dir = t.slice(0, s - 1) : n && (e.dir = "/"), e; }, sep: "/", delimiter: ":", win32: null, posix: null }; Ne.win32 = De.win32 = De; Ne.posix = De.posix = Ne; Ct ? De.normalize : Ne.normalize; Ct ? De.resolve : Ne.resolve; Ct ? De.relative : Ne.relative; Ct ? De.dirname : Ne.dirname; Ct ? De.basename : Ne.basename; Ct ? De.extname : Ne.extname; Ct ? De.sep : Ne.sep; const Zc = /^\w[\w\d+.-]*$/, eh = /^\//, th = /^\/\//; function nh(t, e) { if (!t.scheme && e) throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${t.authority}", path: "${t.path}", query: "${t.query}", fragment: "${t.fragment}"}`); if (t.scheme && !Zc.test(t.scheme)) throw new Error("[UriError]: Scheme contains illegal characters."); if (t.path) { if (t.authority) { if (!eh.test(t.path)) throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character'); } else if (th.test(t.path)) throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")'); } } function rh(t, e) { return !t && !e ? "file" : t; } function ih(t, e) { switch (t) { case "https": case "http": case "file": e ? e[0] !== $e && (e = $e + e) : e = $e; break; } return e; } const ae = "", $e = "/", sh = /^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/; let Wi = class Kn { static isUri(e) { return e instanceof Kn ? !0 : e ? typeof e.authority == "string" && typeof e.fragment == "string" && typeof e.path == "string" && typeof e.query == "string" && typeof e.scheme == "string" && typeof e.fsPath == "string" && typeof e.with == "function" && typeof e.toString == "function" : !1; } /** * @internal */ constructor(e, n, r, i, s, a = !1) { typeof e == "object" ? (this.scheme = e.scheme || ae, this.authority = e.authority || ae, this.path = e.path || ae, this.query = e.query || ae, this.fragment = e.fragment || ae) : (this.scheme = rh(e, a), this.authority = n || ae, this.path = ih(this.scheme, r || ae), this.query = i || ae, this.fragment = s || ae, nh(this, a)); } // ---- filesystem path ----------------------- /** * Returns a string representing the corresponding file system path of this URI. * Will handle UNC paths, normalizes windows drive letters to lower-case, and uses the * platform specific path separator. * * * Will *not* validate the path for invalid characters and semantics. * * Will *not* look at the scheme of this URI. * * The result shall *not* be used for display purposes but for accessing a file on disk. * * * The *difference* to `URI#path` is the use of the platform specific separator and the handling * of UNC paths. See the below sample of a file-uri with an authority (UNC path). * * ```ts const u = URI.parse('file://server/c$/folder/file.txt') u.authority === 'server' u.path === '/shares/c$/file.txt' u.fsPath === '\\server\c$\folder\file.txt' ``` * * Using `URI#path` to read a file (using fs-apis) would not be enough because parts of the path, * namely the server name, would be missing. Therefore `URI#fsPath` exists - it's sugar to ease working * with URIs that represent files on disk (`file` scheme). */ get fsPath() { return ni(this, !1); } // ---- modify to new ------------------------- with(e) { if (!e) return this; let { scheme: n, authority: r, path: i, query: s, fragment: a } = e; return n === void 0 ? n = this.scheme : n === null && (n = ae), r === void 0 ? r = this.authority : r === null && (r = ae), i === void 0 ? i = this.path : i === null && (i = ae), s === void 0 ? s = this.query : s === null && (s = ae), a === void 0 ? a = this.fragment : a === null && (a = ae), n === this.scheme && r === this.authority && i === this.path && s === this.query && a === this.fragment ? this : new Lt(n, r, i, s, a); } // ---- parse & validate ------------------------ /** * Creates a new URI from a string, e.g. `http://www.example.com/some/path`, * `file:///usr/home`, or `scheme:with/path`. * * @param value A string which represents an URI (see `URI#toString`). */ static parse(e, n = !1) { const r = sh.exec(e); return r ? new Lt(r[2] || ae, Vn(r[4] || ae), Vn(r[5] || ae), Vn(r[7] || ae), Vn(r[9] || ae), n) : new Lt(ae, ae, ae, ae, ae); } /** * Creates a new URI from a file system path, e.g. `c:\my\files`, * `/usr/home`, or `\\server\share\some\path`. * * The *difference* between `URI#parse` and `URI#file` is that the latter treats the argument * as path, not as stringified-uri. E.g. `URI.file(path)` is **not the same as** * `URI.parse('file://' + path)` because the path might contain characters that are * interpreted (# and ?). See the following sample: * ```ts const good = URI.file('/coding/c#/project1'); good.scheme === 'file'; good.path === '/coding/c#/project1'; good.fragment === ''; const bad = URI.parse('file://' + '/coding/c#/project1'); bad.scheme === 'file'; bad.path === '/coding/c'; // path is now broken bad.fragment === '/project1'; ``` * * @param path A file system path (see `URI#fsPath`) */ static file(e) { let n = ae; if (xn && (e = e.replace(/\\/g, $e)), e[0] === $e && e[1] === $e) { const r = e.indexOf($e, 2); r === -1 ? (n = e.substring(2), e = $e) : (n = e.substring(2, r), e = e.substring(r) || $e); } return new Lt("file", n, e, ae, ae); } /** * Creates new URI from uri components. * * Unless `strict` is `true` the scheme is defaults to be `file`. This function performs * validation and should be used for untrusted uri components retrieved from storage, * user input, command arguments etc */ static from(e, n) { return new Lt(e.scheme, e.authority, e.path, e.query, e.fragment, n); } /** * Join a URI path with path fragments and normalizes the resulting path. * * @param uri The input URI. * @param pathFragment The path fragment to add to the URI path. * @returns The resulting URI. */ static joinPath(e, ...n) { if (!e.path) throw new Error("[UriError]: cannot call joinPath on URI without path"); let r; return xn && e.scheme === "file" ? r = Kn.file(De.join(ni(e, !0), ...n)).path : r = Ne.join(e.path, ...n), e.with({ path: r }); } // ---- printing/externalize --------------------------- /** * Creates a string representation for this URI. It's guaranteed that calling * `URI.parse` with the result of this function creates an URI which is equal * to this URI. * * * The result shall *not* be used for display purposes but for externalization or transport. * * The result will be encoded using the percentage encoding and encoding happens mostly * ignore the scheme-specific encoding rules. * * @param skipEncoding Do not encode the result, default is `false` */ toString(e = !1) { return ri(this, e); } toJSON() { return this; } static revive(e) { var n, r; if (e) { if (e instanceof Kn) return e; { const i = new Lt(e); return i._formatted = (n = e.external) !== null && n !== void 0 ? n : null, i._fsPath = e._sep === dl && (r = e.fsPath) !== null && r !== void 0 ? r : null, i; } } else return e; } }; const dl = xn ? 1 : void 0; class Lt extends Wi { constructor() { super(...arguments), this._formatted = null, this._fsPath = null; } get fsPath() { return this._fsPath || (this._fsPath = ni(this, !1)), this._fsPath; } toString(e = !1) { return e ? ri(this, !0) : (this._formatted || (this._formatted = ri(this, !1)), this._formatted); } toJSON() { const e = { $mid: 1 /* MarshalledId.Uri */ }; return this._fsPath && (e.fsPath = this._fsPath, e._sep = dl), this._formatted && (e.external = this._formatted), this.path && (e.path = this.path), this.scheme && (e.scheme = this.scheme), this.authority && (e.authority = this.authority), this.query && (e.query = this.query), this.fragment && (e.fragment = this.fragment), e; } } const ul = { 58: "%3A", // gen-delims 47: "%2F", 63: "%3F", 35: "%23", 91: "%5B", 93: "%5D", 64: "%40", 33: "%21", // sub-delims 36: "%24", 38: "%26", 39: "%27", 40: "%28", 41: "%29", 42: "%2A", 43: "%2B", 44: "%2C", 59: "%3B", 61: "%3D", 32: "%20" }; function ms(t, e, n) { let r, i = -1; for (let s = 0; s < t.length; s++) { const a = t.charCodeAt(s); if (a >= 97 && a <= 122 || a >= 65 && a <= 90 || a >= 48 && a <= 57 || a === 45 || a === 46 || a === 95 || a === 126 || e && a === 47 || n && a === 91 || n && a === 93 || n && a === 58) i !== -1 && (r += encodeURIComponent(t.substring(i, s)), i = -1), r !== void 0 && (r += t.charAt(s)); else { r === void 0 && (r = t.substr(0, s)); const o = ul[a]; o !== void 0 ? (i !== -1 && (r += encodeURIComponent(t.substring(i, s)), i = -1), r += o) : i === -1 && (i = s); } } return i !== -1 && (r += encodeURIComponent(t.substring(i))), r !== void 0 ? r : t; } function ah(t) { let e; for (let n = 0; n < t.length; n++) { const r = t.charCodeAt(n); r === 35 || r === 63 ? (e === void 0 && (e = t.substr(0, n)), e += ul[r]) : e !== void 0 && (e += t[n]); } return e !== void 0 ? e : t; } function ni(t, e) { let n; return t.authority && t.path.length > 1 && t.scheme === "file" ? n = `//${t.authority}${t.path}` : t.path.charCodeAt(0) === 47 && (t.path.charCodeAt(1) >= 65 && t.path.charCodeAt(1) <= 90 || t.path.charCodeAt(1) >= 97 && t.path.charCodeAt(1) <= 122) && t.path.charCodeAt(2) === 58 ? e ? n = t.path.substr(1) : n = t.path[1].toLowerCase() + t.path.substr(2) : n = t.path, xn && (n = n.replace(/\//g, "\\")), n; } function ri(t, e) { const n = e ? ah : ms; let r = "", { scheme: i, authority: s, path: a, query: o, fragment: l } = t; if (i && (r += i, r += ":"), (s || i === "file") && (r += $e, r += $e), s) { let c = s.indexOf("@"); if (c !== -1) { const h = s.substr(0, c); s = s.substr(c + 1), c = h.lastIndexOf(":"), c === -1 ? r += n(h, !1, !1) : (r += n(h.substr(0, c), !1, !1), r += ":", r += n(h.substr(c + 1), !1, !0)), r += "@"; } s = s.toLowerCase(), c = s.lastIndexOf(":"), c === -1 ? r += n(s, !1, !0) : (r += n(s.substr(0, c), !1, !0), r += s.substr(c)); } if (a) { if (a.length >= 3 && a.charCodeAt(0) === 47 && a.charCodeAt(2) === 58) { const c = a.charCodeAt(1); c >= 65 && c <= 90 && (a = `/${String.fromCharCode(c + 32)}:${a.substr(3)}`); } else if (a.length >= 2 && a.charCodeAt(1) === 58) { const c = a.charCodeAt(0); c >= 65 && c <= 90 && (a = `${String.fromCharCode(c + 32)}:${a.substr(2)}`); } r += n(a, !0, !1); } return o && (r += "?", r += n(o, !1, !1)), l && (r += "#", r += e ? l : ms(l, !1, !1)), r; } function pl(t) { try { return decodeURIComponent(t); } catch { return t.length > 3 ? t.substr(0, 3) + pl(t.substr(3)) : t; } } const gs = /(%[0-9A-Za-z][0-9A-Za-z])+/g; function Vn(t) { return t.match(gs) ? t.replace(gs, (e) => pl(e)) : t; } let Qe = class Rt { constructor(e, n) { this.lineNumber = e, this.column = n; } /** * Create a new position from this position. * * @param newLineNumber new line number * @param newColumn new column */ with(e = this.lineNumber, n = this.column) { return e === this.lineNumber && n === this.column ? this : new Rt(e, n); } /** * Derive a new position from this position. * * @param deltaLineNumber line number delta * @param deltaColumn column delta */ delta(e = 0, n = 0) { return this.with(this.lineNumber + e, this.column + n); } /** * Test if this position equals other position */ equals(e) { return Rt.equals(this, e); } /** * Test if position `a` equals position `b` */ static equals(e, n) { return !e && !n ? !0 : !!e && !!n && e.lineNumber === n.lineNumber && e.column === n.column; } /** * Test if this position is before other position. * If the two positions are equal, the result will be false. */ isBefore(e) { return Rt.isBefore(this, e); } /** * Test if position `a` is before position `b`. * If the two positions are equal, the result will be false. */ static isBefore(e, n) { return e.lineNumber < n.lineNumber ? !0 : n.lineNumber < e.lineNumber ? !1 : e.column < n.column; } /** * Test if this position is before other position. * If the two positions are equal, the result will be true. */ isBeforeOrEqual(e) { return Rt.isBeforeOrEqual(this, e); } /** * Test if position `a` is before position `b`. * If the two positions are equal, the result will be true. */ static isBeforeOrEqual(e, n) { return e.lineNumber < n.lineNumber ? !0 : n.lineNumber < e.lineNumber ? !1 : e.column <= n.column; } /** * A function that compares positions, useful for sorting */ static compare(e, n) { const r = e.lineNumber | 0, i = n.lineNumber | 0; if (r === i) { const s = e.column | 0, a = n.column | 0; return s - a; } return r - i; } /** * Clone this position. */ clone() { return new Rt(this.lineNumber, this.column); } /** * Convert to a human-readable representation. */ toString() { return "(" + this.lineNumber + "," + this.column + ")"; } // --- /** * Create a `Position` from an `IPosition`. */ static lift(e) { return new Rt(e.lineNumber, e.column); } /** * Test if `obj` is an `IPosition`. */ static isIPosition(e) { return e && typeof e.lineNumber == "number" && typeof e.column == "number"; } }, we = class pe { constructor(e, n, r, i) { e > r || e === r && n > i ? (this.startLineNumber = r, this.startColumn = i, this.endLineNumber = e, this.endColumn = n) : (this.startLineNumber = e, this.startColumn = n, this.endLineNumber = r, this.endColumn = i); } /** * Test if this range is empty. */ isEmpty() { return pe.isEmpty(this); } /** * Test if `range` is empty. */ static isEmpty(e) { return e.startLineNumber === e.endLineNumber && e.startColumn === e.endColumn; } /** * Test if position is in this range. If the position is at the edges, will return true. */ containsPosition(e) { return pe.containsPosition(this, e); } /** * Test if `position` is in `range`. If the position is at the edges, will return true. */ static containsPosition(e, n) { return !(n.lineNumber < e.startLineNumber || n.lineNumber > e.endLineNumber || n.lineNumber === e.startLineNumber && n.column < e.startColumn || n.lineNumber === e.endLineNumber && n.column > e.endColumn); } /** * Test if `position` is in `range`. If the position is at the edges, will return false. * @internal */ static strictContainsPosition(e, n) { return !(n.lineNumber < e.startLineNumber || n.lineNumber > e.endLineNumber || n.lineNumber === e.startLineNumber && n.column <= e.startColumn || n.lineNumber === e.endLineNumber && n.column >= e.endColumn); } /** * Test if range is in this range. If the range is equal to this range, will return true. */ containsRange(e) { return pe.containsRange(this, e); } /** * Test if `otherRange` is in `range`. If the ranges are equal, will return true. */ static containsRange(e, n) { return !(n.startLineNumber < e.startLineNumber || n.endLineNumber < e.startLineNumber || n.startLineNumber > e.endLineNumber || n.endLineNumber > e.endLineNumber || n.startLineNumber === e.startLineNumber && n.startColumn < e.startColumn || n.endLineNumber === e.endLineNumber && n.endColumn > e.endColumn); } /** * Test if `range` is strictly in this range. `range` must start after and end before this range for the result to be true. */ strictContainsRange(e) { return pe.strictContainsRange(this, e); } /** * Test if `otherRange` is strictly in `range` (must start after, and end before). If the ranges are equal, will return false. */ static strictContainsRange(e, n) { return !(n.startLineNumber < e.startLineNumber || n.endLineNumber < e.startLineNumber || n.startLineNumber > e.endLineNumber || n.endLineNumber > e.endLineNumber || n.startLineNumber === e.startLineNumber && n.startColumn <= e.startColumn || n.endLineNumber === e.endLineNumber && n.endColumn >= e.endColumn); } /** * A reunion of the two ranges. * The smallest position will be used as the start point, and the largest one as the end point. */ plusRange(e) { return pe.plusRange(this, e); } /** * A reunion of the two ranges. * The smallest position will be used as the start point, and the largest one as the end point. */ static plusRange(e, n) { let r, i, s, a; return n.startLineNumber < e.startLineNumber ? (r = n.startLineNumber, i = n.startColumn) : n.startLineNumber === e.startLineNumber ? (r = n.startLineNumber, i = Math.min(n.startColumn, e.startColumn)) : (r = e.startLineNumber, i = e.startColumn), n.endLineNumber > e.endLineNumber ? (s = n.endLineNumber, a = n.endColumn) : n.endLineNumber === e.endLineNumber ? (s = n.endLineNumber, a = Math.max(n.endColumn, e.endColumn)) : (s = e.endLineNumber, a = e.endColumn), new pe(r, i, s, a); } /** * A intersection of the two ranges. */ intersectRanges(e) { return pe.intersectRanges(this, e); } /** * A intersection of the two ranges. */ static intersectRanges(e, n) { let r = e.startLineNumber, i = e.startColumn, s = e.endLineNumber, a = e.endColumn; const o = n.startLineNumber, l = n.startColumn, c = n.endLineNumber, h = n.endColumn; return r < o ? (r = o, i = l) : r === o && (i = Math.max(i, l)), s > c ? (s = c, a = h) : s === c && (a = Math.min(a, h)), r > s || r === s && i > a ? null : new pe(r, i, s, a); } /** * Test if this range equals other. */ equalsRange(e) { return pe.equalsRange(this, e); } /** * Test if range `a` equals `b`. */ static equalsRange(e, n) { return !e && !n ? !0 : !!e && !!n && e.startLineNumber === n.startLineNumber && e.startColumn === n.startColumn && e.endLineNumber === n.endLineNumber && e.endColumn === n.endColumn; } /** * Return the end position (which will be after or equal to the start position) */ getEndPosition() { return pe.getEndPosition(this); } /** * Return the end position (which will be after or equal to the start position) */ static getEndPosition(e) { return new Qe(e.endLineNumber, e.endColumn); } /** * Return the start position (which will be before or equal to the end position) */ getStartPosition() { return pe.getStartPosition(this); } /** * Return the start position (which will be before or equal to the end position) */ static getStartPosition(e) { return new Qe(e.startLineNumber, e.startColumn); } /** * Transform to a user presentable string representation. */ toString() { return "[" + this.startLineNumber + "," + this.startColumn + " -> " + this.endLineNumber + "," + this.endColumn + "]"; } /** * Create a new range using this range's start position, and using endLineNumber and endColumn as the end position. */ setEndPosition(e, n) { return new pe(this.startLineNumber, this.startColumn, e, n); } /** * Create a new range using this range's end position, and using startLineNumber and startColumn as the start position. */ setStartPosition(e, n) { return new pe(e, n, this.endLineNumber, this.endColumn); } /** * Create a new empty range using this range's start position. */ collapseToStart() { return pe.collapseToStart(this); } /** * Create a new empty range using this range's start position. */ static collapseToStart(e) { return new pe(e.startLineNumber, e.startColumn, e.startLineNumber, e.startColumn); } /** * Create a new empty range using this range's end position. */ collapseToEnd() { return pe.collapseToEnd(this); } /** * Create a new empty range using this range's end position. */ static collapseToEnd(e) { return new pe(e.endLineNumber, e.endColumn, e.endLineNumber, e.endColumn); } /** * Moves the range by the given amount of lines. */ delta(e) { return new pe(this.startLineNumber + e, this.startColumn, this.endLineNumber + e, this.endColumn); } // --- static fromPositions(e, n = e) { return new pe(e.lineNumber, e.column, n.lineNumber, n.column); } static lift(e) { return e ? new pe(e.startLineNumber, e.startColumn, e.endLineNumber, e.endColumn) : null; } /** * Test if `obj` is an `IRange`. */ static isIRange(e) { return e && typeof e.startLineNumber == "number" && typeof e.startColumn == "number" && typeof e.endLineNumber == "number" && typeof e.endColumn == "number"; } /** * Test if the two ranges are touching in any way. */ static areIntersectingOrTouching(e, n) { return !(e.endLineNumber < n.startLineNumber || e.endLineNumber === n.startLineNumber && e.endColumn < n.startColumn || n.endLineNumber < e.startLineNumber || n.endLineNumber === e.startLineNumber && n.endColumn < e.startColumn); } /** * Test if the two ranges are intersecting. If the ranges are touching it returns true. */ static areIntersecting(e, n) { return !(e.endLineNumber < n.startLineNumber || e.endLineNumber === n.startLineNumber && e.endColumn <= n.startColumn || n.endLineNumber < e.startLineNumber || n.endLineNumber === e.startLineNumber && n.endColumn <= e.startColumn); } /** * A function that compares ranges, useful for sorting ranges * It will first compare ranges on the startPosition and then on the endPosition */ static compareRangesUsingStarts(e, n) { if (e && n) { const s = e.startLineNumber | 0, a = n.startLineNumber | 0; if (s === a) { const o = e.startColumn | 0, l = n.startColumn | 0; if (o === l) { const c = e.endLineNumber | 0, h = n.endLineNumber | 0; if (c === h) { const u = e.endColumn | 0, f = n.endColumn | 0; return u - f; } return c - h; } return o - l; } return s - a; } return (e ? 1 : 0) - (n ? 1 : 0); } /** * A function that compares ranges, useful for sorting ranges * It will first compare ranges on the endPosition and then on the startPosition */ static compareRangesUsingEnds(e, n) { return e.endLineNumber === n.endLineNumber ? e.endColumn === n.endColumn ? e.startLineNumber === n.startLineNumber ? e.startColumn - n.startColumn : e.startLineNumber - n.startLineNumber : e.endColumn - n.endColumn : e.endLineNumber - n.endLineNumber; } /** * Test if the range spans multiple lines. */ static spansMultipleLines(e) { return e.endLineNumber > e.startLineNumber; } toJSON() { return this; } }; function oh(t, e, n = (r, i) => r === i) { if (t === e) return !0; if (!t || !e || t.length !== e.length) return !1; for (let r = 0, i = t.length; r < i; r++) if (!n(t[r], e[r])) return !1; return !0; } function* lh(t, e) { let n, r; for (const i of t) r !== void 0 && e(r, i) ? n.push(i) : (n && (yield n), n = [i]), r = i; n && (yield n); } function ch(t, e) { for (let n = 0; n <= t.length; n++) e(n === 0 ? void 0 : t[n - 1], n === t.length ? void 0 : t[n]); } function hh(t, e) { for (let n = 0; n < t.length; n++) e(n === 0 ? void 0 : t[n - 1], t[n], n + 1 === t.length ? void 0 : t[n + 1]); } function dh(t, e) { for (const n of e) t.push(n); } var bs; (function(t) { function e(s) { return s < 0; } t.isLessThan = e; function n(s) { return s <= 0; } t.isLessThanOrEqual = n; function r(s) { return s > 0; } t.isGreaterThan = r; function i(s) { return s === 0; } t.isNeitherLessOrGreaterThan = i, t.greaterThan = 1, t.lessThan = -1, t.neitherLessOrGreaterThan = 0; })(bs || (bs = {})); function Qn(t, e) { return (n, r) => e(t(n), t(r)); } const Zn = (t, e) => t - e; function uh(t) { return (e, n) => -t(e, n); } function vs(t) { return t < 0 ? 0 : t > 255 ? 255 : t | 0; } function Pt(t) { return t < 0 ? 0 : t > 4294967295 ? 4294967295 : t | 0; } class ph { constructor(e) { this.values = e, this.prefixSum = new Uint32Array(e.length), this.prefixSumValidIndex = new Int32Array(1), this.prefixSumValidIndex[0] = -1; } insertValues(e, n) { e = Pt(e); const r = this.values, i = this.prefixSum, s = n.length; return s === 0 ? !1 : (this.values = new Uint32Array(r.length + s), this.values.set(r.subarray(0, e), 0), this.values.set(r.subarray(e), e + s), this.values.set(n, e), e - 1 < this.prefixSumValidIndex[0] && (this.prefixSumValidIndex[0] = e - 1), this.prefixSum = new Uint32Array(this.values.length), this.prefixSumValidIndex[0] >= 0 && this.prefixSum.set(i.subarray(0, this.prefixSumValidIndex[0] + 1)), !0); } setValue(e, n) { return e = Pt(e), n = Pt(n), this.values[e] === n ? !1 : (this.values[e] = n, e - 1 < this.prefixSumValidIndex[0] && (this.prefixSumValidIndex[0] = e - 1), !0); } removeValues(e, n) { e = Pt(e), n = Pt(n); const r = this.values, i = this.prefixSum; if (e >= r.length) return !1; const s = r.length - e; return n >= s && (n = s), n === 0 ? !1 : (this.values = new Uint32Array(r.length - n), this.values.set(r.subarray(0, e), 0), this.values.set(r.subarray(e + n), e), this.prefixSum = new Uint32Array(this.values.length), e - 1 < this.prefixSumValidIndex[0] && (this.prefixSumValidIndex[0] = e - 1), this.prefixSumValidIndex[0] >= 0 && this.prefixSum.set(i.subarray(0, this.prefixSumValidIndex[0] + 1)), !0); } getTotalSum() { return this.values.length === 0 ? 0 : this._getPrefixSum(this.values.length - 1); } /** * Returns the sum of the first `index + 1` many items. * @returns `SUM(0 <= j <= index, values[j])`. */ getPrefixSum(e) { return e < 0 ? 0 : (e = Pt(e), this._getPrefixSum(e)); } _getPrefixSum(e) { if (e <= this.prefixSumValidIndex[0]) return this.prefixSum[e]; let n = this.prefixSumValidIndex[0] + 1; n === 0 && (this.prefixSum[0] = this.values[0], n++), e >= this.values.length && (e = this.values.length - 1); for (let r = n; r <= e; r++) this.prefixSum[r] = this.prefixSum[r - 1] + this.values[r]; return this.prefixSumValidIndex[0] = Math.max(this.prefixSumValidIndex[0], e), this.prefixSum[e]; } getIndexOf(e) { e = Math.floor(e), this.getTotalSum(); let n = 0, r = this.values.length - 1, i = 0, s = 0, a = 0; for (; n <= r; ) if (i = n + (r - n) / 2 | 0, s = this.prefixSum[i], a = s - this.values[i], e < a) r = i - 1; else if (e >= s) n = i + 1; else break; return new fh(i, e - a); } } class fh { constructor(e, n) { this.index = e, this.remainder = n, this._prefixSumIndexOfResultBrand = void 0, this.index = e, this.remainder = n; } } class mh { constructor(e, n, r, i) { this._uri = e, this._lines = n, this._eol = r, this._versionId = i, this._lineStarts = null, this._cachedTextValue = null; } dispose() { this._lines.length = 0; } get version() { return this._versionId; } getText() { return this._cachedTextValue === null && (this._cachedTextValue = this._lines.join(this._eol)), this._cachedTextValue; } onEvents(e) { e.eol && e.eol !== this._eol && (this._eol = e.eol, this._lineStarts = null); const n = e.changes; for (const r of n) this._acceptDeleteRange(r.range), this._acceptInsertText(new Qe(r.range.startLineNumber, r.range.startColumn), r.text); this._versionId = e.versionId, this._cachedTextValue = null; } _ensureLineStarts() { if (!this._lineStarts) { const e = this._eol.length, n = this._lines.length, r = new Uint32Array(n); for (let i = 0; i < n; i++) r[i] = this._lines[i].length + e; this._lineStarts = new ph(r); } } /** * All changes to a line's text go through this method */ _setLineText(e, n) { this._lines[e] = n, this._lineStarts && this._lineStarts.setValue(e, this._lines[e].length + this._eol.length); } _acceptDeleteRange(e) { if (e.startLineNumber === e.endLineNumber) { if (e.startColumn === e.endColumn) return; this._setLineText(e.startLineNumber - 1, this._lines[e.startLineNumber - 1].substring(0, e.startColumn - 1) + this._lines[e.startLineNumber - 1].substring(e.endColumn - 1)); return; } this._setLineText(e.startLineNumber - 1, this._lines[e.startLineNumber - 1].substring(0, e.startColumn - 1) + this._lines[e.endLineNumber - 1].substring(e.endColumn - 1)), this._lines.splice(e.startLineNumber, e.endLineNumber - e.startLineNumber), this._lineStarts && this._lineStarts.removeValues(e.startLineNumber, e.endLineNumber - e.startLineNumber); } _acceptInsertText(e, n) { if (n.length === 0) return; const r = Rc(n); if (r.length === 1) { this._setLineText(e.lineNumber - 1, this._lines[e.lineNumber - 1].substring(0, e.column - 1) + r[0] + this._lines[e.lineNumber - 1].substring(e.column - 1)); return; } r[r.length - 1] += this._lines[e.lineNumber - 1].substring(e.column - 1), this._setLineText(e.lineNumber - 1, this._lines[e.lineNumber - 1].substring(0, e.column - 1) + r[0]); const i = new Uint32Array(r.length - 1); for (let s = 1; s < r.length; s++) this._lines.splice(e.lineNumber + s - 1, 0, r[s]), i[s - 1] = r[s].length + this._eol.length; this._lineStarts && this._lineStarts.insertValues(e.lineNumber, i); } } const gh = "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"; function bh(t = "") { let e = "(-?\\d*\\.\\d\\w*)|([^"; for (const n of gh) t.indexOf(n) >= 0 || (e += "\\" + n); return e += "\\s]+)", new RegExp(e, "g"); } const fl = bh(); function vh(t) { let e = fl; if (t && t instanceof RegExp) if (t.global) e = t; else { let n = "g"; t.ignoreCase && (n += "i"), t.multiline && (n += "m"), t.unicode && (n += "u"), e = new RegExp(t.source, n); } return e.lastIndex = 0, e; } const ml = new oc(); ml.unshift({ maxLen: 1e3, windowSize: 15, timeBudget: 150 }); function Oi(t, e, n, r, i) { if (i || (i = ir.first(ml)), n.length > i.maxLen) { let c = t - i.maxLen / 2; return c < 0 ? c = 0 : r += c, n = n.substring(c, t + i.maxLen / 2), Oi(t, e, n, r, i); } const s = Date.now(), a = t - 1 - r; let o = -1, l = null; for (let c = 1; !(Date.now() - s >= i.timeBudget); c++) { const h = a - i.windowSize * c; e.lastIndex = Math.max(0, h); const u = yh(e, n, a, o); if (!u && l || (l = u, h <= 0)) break; o = h; } if (l) { const c = { word: l[0], startColumn: r + 1 + l.index, endColumn: r + 1 + l.index + l[0].length }; return e.lastIndex = 0, c; } return null; } function yh(t, e, n, r) { let i; for (; i = t.exec(e); ) { const s = i.index || 0; if (s <= n && t.lastIndex >= n) return i; if (r > 0 && s > r) return null; } return null; } class Ui { constructor(e) { const n = vs(e); this._defaultValue = n, this._asciiMap = Ui._createAsciiMap(n), this._map = /* @__PURE__ */ new Map(); } static _createAsciiMap(e) { const n = new Uint8Array(256); return n.fill(e), n; } set(e, n) { const r = vs(n); e >= 0 && e < 256 ? this._asciiMap[e] = r : this._map.set(e, r); } get(e) { return e >= 0 && e < 256 ? this._asciiMap[e] : this._map.get(e) || this._defaultValue; } clear() { this._asciiMap.fill(this._defaultValue), this._map.clear(); } } class wh { constructor(e, n, r) { const i = new Uint8Array(e * n); for (let s = 0, a = e * n; s < a; s++) i[s] = r; this._data = i, this.rows = e, this.cols = n; } get(e, n) { return this._data[e * this.cols + n]; } set(e, n, r) { this._data[e * this.cols + n] = r; } } class xh { constructor(e) { let n = 0, r = 0; for (let s = 0, a = e.length; s < a; s++) { const [o, l, c] = e[s]; l > n && (n = l), o > r && (r = o), c > r && (r = c); } n++, r++; const i = new wh( r, n, 0 /* State.Invalid */ ); for (let s = 0, a = e.length; s < a; s++) { const [o, l, c] = e[s]; i.set(o, l, c); } this._states = i, this._maxCharCode = n; } nextState(e, n) { return n < 0 || n >= this._maxCharCode ? 0 : this._states.get(e, n); } } let Mr = null; function Sh() { return Mr === null && (Mr = new xh([ [ 1, 104, 2 /* State.H */ ], [ 1, 72, 2 /* State.H */ ], [ 1, 102, 6 /* State.F */ ], [ 1, 70, 6 /* State.F */ ], [ 2, 116, 3 /* State.HT */ ], [ 2, 84, 3 /* State.HT */ ], [ 3, 116, 4 /* State.HTT */ ], [ 3, 84, 4 /* State.HTT */ ], [ 4, 112, 5 /* State.HTTP */ ], [ 4, 80, 5 /* State.HTTP */ ], [ 5, 115, 9 /* State.BeforeColon */ ], [ 5, 83, 9 /* State.BeforeColon */ ], [ 5, 58, 10 /* State.AfterColon */ ], [ 6, 105, 7 /* State.FI */ ], [ 6, 73, 7 /* State.FI */ ], [ 7, 108, 8 /* State.FIL */ ], [ 7, 76, 8 /* State.FIL */ ], [ 8, 101, 9 /* State.BeforeColon */ ], [ 8, 69, 9 /* State.BeforeColon */ ], [ 9, 58, 10 /* State.AfterColon */ ], [ 10, 47, 11 /* State.AlmostThere */ ], [ 11, 47, 12 /* State.End */ ] ])), Mr; } let rn = null; function Ch() { if (rn === null) { rn = new Ui( 0 /* CharacterClass.None */ ); const t = ` <>'"、。。、,.:;‘〈「『〔([{「」}])〕』」〉’`~…`; for (let n = 0; n < t.length; n++) rn.set( t.charCodeAt(n), 1 /* CharacterClass.ForceTermination */ ); const e = ".,;:"; for (let n = 0; n < e.length; n++) rn.set( e.charCodeAt(n), 2 /* CharacterClass.CannotEndIn */ ); } return rn; } class or { static _createLink(e, n, r, i, s) { let a = s - 1; do { const o = n.charCodeAt(a); if (e.get(o) !== 2) break; a--; } while (a > i); if (i > 0) { const o = n.charCodeAt(i - 1), l = n.charCodeAt(a); (o === 40 && l === 41 || o === 91 && l === 93 || o === 123 && l === 125) && a--; } return { range: { startLineNumber: r, startColumn: i + 1, endLineNumber: r, endColumn: a + 2 }, url: n.substring(i, a + 1) }; } static computeLinks(e, n = Sh()) { const r = Ch(), i = []; for (let s = 1, a = e.getLineCount(); s <= a; s++) { const o = e.getLineContent(s), l = o.length; let c = 0, h = 0, u = 0, f = 1, m = !1, g = !1, b = !1, y = !1; for (; c < l; ) { let k = !1; const w = o.charCodeAt(c); if (f === 13) { let S; switch (w) { case 40: m = !0, S = 0; break; case 41: S = m ? 0 : 1; break; case 91: b = !0, g = !0, S = 0; break; case 93: b = !1, S = g ? 0 : 1; break; case 123: y = !0, S = 0; break; case 125: S = y ? 0 : 1; break; case 39: case 34: case 96: u === w ? S = 1 : u === 39 || u === 34 || u === 96 ? S = 0 : S = 1; break; case 42: S = u === 42 ? 1 : 0; break; case 124: S = u === 124 ? 1 : 0; break; case 32: S = b ? 0 : 1; break; default: S = r.get(w); } S === 1 && (i.push(or._createLink(r, o, s, h, c)), k = !0); } else if (f === 12) { let S; w === 91 ? (g = !0, S = 0) : S = r.get(w), S === 1 ? k = !0 : f = 13; } else f = n.nextState(f, w), f === 0 && (k = !0); k && (f = 1, m = !1, g = !1, y = !1, h = c + 1, u = w), c++; } f === 13 && i.push(or._createLink(r, o, s, h, l)); } return i; } } function kh(t) { return !t || typeof t.getLineCount != "function" || typeof t.getLineContent != "function" ? [] : or.computeLinks(t); } class ii { constructor() { this._defaultValueSet = [ ["true", "false"], ["True", "False"], ["Private", "Public", "Friend", "ReadOnly", "Partial", "Protected", "WriteOnly"], ["public", "protected", "private"] ]; } navigateValueSet(e, n, r, i, s) { if (e && n) { const a = this.doNavigateValueSet(n, s); if (a) return { range: e, value: a }; } if (r && i) { const a = this.doNavigateValueSet(i, s); if (a) return { range: r, value: a }; } return null; } doNavigateValueSet(e, n) { const r = this.numberReplace(e, n); return r !== null ? r : this.textReplace(e, n); } numberReplace(e, n) { const r = Math.pow(10, e.length - (e.lastIndexOf(".") + 1)); let i = Number(e); const s = parseFloat(e); return !isNaN(i) && !isNaN(s) && i === s ? i === 0 && !n ? null : (i = Math.floor(i * r), i += n ? r : -r, String(i / r)) : null; } textReplace(e, n) { return this.valueSetsReplace(this._defaultValueSet, e, n); } valueSetsReplace(e, n, r) { let i = null; for (let s = 0, a = e.length; i === null && s < a; s++) i = this.valueSetReplace(e[s], n, r); return i; } valueSetReplace(e, n, r) { let i = e.indexOf(n); return i >= 0 ? (i += r ? 1 : -1, i < 0 ? i = e.length - 1 : i %= e.length, e[i]) : null; } } ii.INSTANCE = new ii(); const gl = Object.freeze(function(t, e) { const n = setTimeout(t.bind(e), 0); return { dispose() { clearTimeout(n); } }; }); var lr; (function(t) { function e(n) { return n === t.None || n === t.Cancelled || n instanceof er ? !0 : !n || typeof n != "object" ? !1 : typeof n.isCancellationRequested == "boolean" && typeof n.onCancellationRequested == "function"; } t.isCancellationToken = e, t.None = Object.freeze({ isCancellationRequested: !1, onCancellationRequested: Yr.None }), t.Cancelled = Object.freeze({ isCancellationRequested: !0, onCancellationRequested: gl }); })(lr || (lr = {})); class er { constructor() { this._isCancelled = !1, this._emitter = null; } cancel() { this._isCancelled || (this._isCancelled = !0, this._emitter && (this._emitter.fire(void 0), this.dispose())); } get isCancellationRequested() { return this._isCancelled; } get onCancellationRequested() { return this._isCancelled ? gl : (this._emitter || (this._emitter = new je()), this._emitter.event); } dispose() { this._emitter && (this._emitter.dispose(), this._emitter = null); } } class _h { constructor(e) { this._token = void 0, this._parentListener = void 0, this._parentListener = e && e.onCancellationRequested(this.cancel, this); } get token() { return this._token || (this._token = new er()), this._token; } cancel() { this._token ? this._token instanceof er && this._token.cancel() : this._token = lr.Cancelled; } dispose(e = !1) { var n; e && this.cancel(), (n = this._parentListener) === null || n === void 0 || n.dispose(), this._token ? this._token instanceof er && this._token.dispose() : this._token = lr.None; } } class Vi { constructor() { this._keyCodeToStr = [], this._strToKeyCode = /* @__PURE__ */ Object.create(null); } define(e, n) { this._keyCodeToStr[e] = n, this._strToKeyCode[n.toLowerCase()] = e; } keyCodeToStr(e) { return this._keyCodeToStr[e]; } strToKeyCode(e) { return this._strToKeyCode[e.toLowerCase()] || 0; } } const tr = new Vi(), si = new Vi(), ai = new Vi(), Rh = new Array(230), Fh = /* @__PURE__ */ Object.create(null), Eh = /* @__PURE__ */ Object.create(null); (function() { const t = "", e = [ // immutable, scanCode, scanCodeStr, keyCode, keyCodeStr, eventKeyCode, vkey, usUserSettingsLabel, generalUserSettingsLabel [1, 0, "None", 0, "unknown", 0, "VK_UNKNOWN", t, t], [1, 1, "Hyper", 0, t, 0, t, t, t], [1, 2, "Super", 0, t, 0, t, t, t], [1, 3, "Fn", 0, t, 0, t, t, t], [1, 4, "FnLock", 0, t, 0, t, t, t], [1, 5, "Suspend", 0, t, 0, t, t, t], [1, 6, "Resume", 0, t, 0, t, t, t], [1, 7, "Turbo", 0, t, 0, t, t, t], [1, 8, "Sleep", 0, t, 0, "VK_SLEEP", t, t], [1, 9, "WakeUp", 0, t, 0, t, t, t], [0, 10, "KeyA", 31, "A", 65, "VK_A", t, t], [0, 11, "KeyB", 32, "B", 66, "VK_B", t, t], [0, 12, "KeyC", 33, "C", 67, "VK_C", t, t], [0, 13, "KeyD", 34, "D", 68, "VK_D", t, t], [0, 14, "KeyE", 35, "E", 69, "VK_E", t, t], [0, 15, "KeyF", 36, "F", 70, "VK_F", t, t], [0, 16, "KeyG", 37, "G", 71, "VK_G", t, t], [0, 17, "KeyH", 38, "H", 72, "VK_H", t, t], [0, 18, "KeyI", 39, "I", 73, "VK_I", t, t], [0, 19, "KeyJ", 40, "J", 74, "VK_J", t, t], [0, 20, "KeyK", 41, "K", 75, "VK_K", t, t], [0, 21, "KeyL", 42, "L", 76, "VK_L", t, t], [0, 22, "KeyM", 43, "M", 77, "VK_M", t, t], [0, 23, "KeyN", 44, "N", 78, "VK_N", t, t], [0, 24, "KeyO", 45, "O", 79, "VK_O", t, t], [0, 25, "KeyP", 46, "P", 80, "VK_P", t, t], [0, 26, "KeyQ", 47, "Q", 81, "VK_Q", t, t], [0, 27, "KeyR", 48, "R", 82, "VK_R", t, t], [0, 28, "KeyS", 49, "S", 83, "VK_S", t, t], [0, 29, "KeyT", 50, "T", 84, "VK_T", t, t], [0, 30, "KeyU", 51, "U", 85, "VK_U", t, t], [0, 31, "KeyV", 52, "V", 86, "VK_V", t, t], [0, 32, "KeyW", 53, "W", 87, "VK_W", t, t], [0, 33, "KeyX", 54, "X", 88, "VK_X", t, t], [0, 34, "KeyY", 55, "Y", 89, "VK_Y", t, t], [0, 35, "KeyZ", 56, "Z", 90, "VK_Z", t, t], [0, 36, "Digit1", 22, "1", 49, "VK_1", t, t], [0, 37, "Digit2", 23, "2", 50, "VK_2", t, t], [0, 38, "Digit3", 24, "3", 51, "VK_3", t, t], [0, 39, "Digit4", 25, "4", 52, "VK_4", t, t], [0, 40, "Digit5", 26, "5", 53, "VK_5", t, t], [0, 41, "Digit6", 27, "6", 54, "VK_6", t, t], [0, 42, "Digit7", 28, "7", 55, "VK_7", t, t], [0, 43, "Digit8", 29, "8", 56, "VK_8", t, t], [0, 44, "Digit9", 30, "9", 57, "VK_9", t, t], [0, 45, "Digit0", 21, "0", 48, "VK_0", t, t], [1, 46, "Enter", 3, "Enter", 13, "VK_RETURN", t, t], [1, 47, "Escape", 9, "Escape", 27, "VK_ESCAPE", t, t], [1, 48, "Backspace", 1, "Backspace", 8, "VK_BACK", t, t], [1, 49, "Tab", 2, "Tab", 9, "VK_TAB", t, t], [1, 50, "Space", 10, "Space", 32, "VK_SPACE", t, t], [0, 51, "Minus", 88, "-", 189, "VK_OEM_MINUS", "-", "OEM_MINUS"], [0, 52, "Equal", 86, "=", 187, "VK_OEM_PLUS", "=", "OEM_PLUS"], [0, 53, "BracketLeft", 92, "[", 219, "VK_OEM_4", "[", "OEM_4"], [0, 54, "BracketRight", 94, "]", 221, "VK_OEM_6", "]", "OEM_6"], [0, 55, "Backslash", 93, "\\", 220, "VK_OEM_5", "\\", "OEM_5"], [0, 56, "IntlHash", 0, t, 0, t, t, t], // has been dropped from the w3c spec [0, 57, "Semicolon", 85, ";", 186, "VK_OEM_1", ";", "OEM_1"], [0, 58, "Quote", 95, "'", 222, "VK_OEM_7", "'", "OEM_7"], [0, 59, "Backquote", 91, "`", 192, "VK_OEM_3", "`", "OEM_3"], [0, 60, "Comma", 87, ",", 188, "VK_OEM_COMMA", ",", "OEM_COMMA"], [0, 61, "Period", 89, ".", 190, "VK_OEM_PERIOD", ".", "OEM_PERIOD"], [0, 62, "Slash", 90, "/", 191, "VK_OEM_2", "/", "OEM_2"], [1, 63, "CapsLock", 8, "CapsLock", 20, "VK_CAPITAL", t, t], [1, 64, "F1", 59, "F1", 112, "VK_F1", t, t], [1, 65, "F2", 60, "F2", 113, "VK_F2", t, t], [1, 66, "F3", 61, "F3", 114, "VK_F3", t, t], [1, 67, "F4", 62, "F4", 115, "VK_F4", t, t], [1, 68, "F5", 63, "F5", 116, "VK_F5", t, t], [1, 69, "F6", 64, "F6", 117, "VK_F6", t, t], [1, 70, "F7", 65, "F7", 118, "VK_F7", t, t], [1, 71, "F8", 66, "F8", 119, "VK_F8", t, t], [1, 72, "F9", 67, "F9", 120, "VK_F9", t, t], [1, 73, "F10", 68, "F10", 121, "VK_F10", t, t], [1, 74, "F11", 69, "F11", 122, "VK_F11", t, t], [1, 75, "F12", 70, "F12", 123, "VK_F12", t, t], [1, 76, "PrintScreen", 0, t, 0, t, t, t], [1, 77, "ScrollLock", 84, "ScrollLock", 145, "VK_SCROLL", t, t], [1, 78, "Pause", 7, "PauseBreak", 19, "VK_PAUSE", t, t], [1, 79, "Insert", 19, "Insert", 45, "VK_INSERT", t, t], [1, 80, "Home", 14, "Home", 36, "VK_HOME", t, t], [1, 81, "PageUp", 11, "PageUp", 33, "VK_PRIOR", t, t], [1, 82, "Delete", 20, "Delete", 46, "VK_DELETE", t, t], [1, 83, "End", 13, "End", 35, "VK_END", t, t], [1, 84, "PageDown", 12, "PageDown", 34, "VK_NEXT", t, t], [1, 85, "ArrowRight", 17, "RightArrow", 39, "VK_RIGHT", "Right", t], [1, 86, "ArrowLeft", 15, "LeftArrow", 37, "VK_LEFT", "Left", t], [1, 87, "ArrowDown", 18, "DownArrow", 40, "VK_DOWN", "Down", t], [1, 88, "ArrowUp", 16, "UpArrow", 38, "VK_UP", "Up", t], [1, 89, "NumLock", 83, "NumLock", 144, "VK_NUMLOCK", t, t], [1, 90, "NumpadDivide", 113, "NumPad_Divide", 111, "VK_DIVIDE", t, t], [1, 91, "NumpadMultiply", 108, "NumPad_Multiply", 106, "VK_MULTIPLY", t, t], [1, 92, "NumpadSubtract", 111, "NumPad_Subtract", 109, "VK_SUBTRACT", t, t], [1, 93, "NumpadAdd", 109, "NumPad_Add", 107, "VK_ADD", t, t], [1, 94, "NumpadEnter", 3, t, 0, t, t, t], [1, 95, "Numpad1", 99, "NumPad1", 97, "VK_NUMPAD1", t, t], [1, 96, "Numpad2", 100, "NumPad2", 98, "VK_NUMPAD2", t, t], [1, 97, "Numpad3", 101, "NumPad3", 99, "VK_NUMPAD3", t, t], [1, 98, "Numpad4", 102, "NumPad4", 100, "VK_NUMPAD4", t, t], [1, 99, "Numpad5", 103, "NumPad5", 101, "VK_NUMPAD5", t, t], [1, 100, "Numpad6", 104, "NumPad6", 102, "VK_NUMPAD6", t, t], [1, 101, "Numpad7", 105, "NumPad7", 103, "VK_NUMPAD7", t, t], [1, 102, "Numpad8", 106, "NumPad8", 104, "VK_NUMPAD8", t, t], [1, 103, "Numpad9", 107, "NumPad9", 105, "VK_NUMPAD9", t, t], [1, 104, "Numpad0", 98, "NumPad0", 96, "VK_NUMPAD0", t, t], [1, 105, "NumpadDecimal", 112, "NumPad_Decimal", 110, "VK_DECIMAL", t, t], [0, 106, "IntlBackslash", 97, "OEM_102", 226, "VK_OEM_102", t, t], [1, 107, "ContextMenu", 58, "ContextMenu", 93, t, t, t], [1, 108, "Power", 0, t, 0, t, t, t], [1, 109, "NumpadEqual", 0, t, 0, t, t, t], [1, 110, "F13", 71, "F13", 124, "VK_F13", t, t], [1, 111, "F14", 72, "F14", 125, "VK_F14", t, t], [1, 112, "F15", 73, "F15", 126, "VK_F15", t, t], [1, 113, "F16", 74, "F16", 127, "VK_F16", t, t], [1, 114, "F17", 75, "F17", 128, "VK_F17", t, t], [1, 115, "F18", 76, "F18", 129, "VK_F18", t, t], [1, 116, "F19", 77, "F19", 130, "VK_F19", t, t], [1, 117, "F20", 78, "F20", 131, "VK_F20", t, t], [1, 118, "F21", 79, "F21", 132, "VK_F21", t, t], [1, 119, "F22", 80, "F22", 133, "VK_F22", t, t], [1, 120, "F23", 81, "F23", 134, "VK_F23", t, t], [1, 121, "F24", 82, "F24", 135, "VK_F24", t, t], [1, 122, "Open", 0, t, 0, t, t, t], [1, 123, "Help", 0, t, 0, t, t, t], [1, 124, "Select", 0, t, 0, t, t, t], [1, 125, "Again", 0, t, 0, t, t, t], [1, 126, "Undo", 0, t, 0, t, t, t], [1, 127, "Cut", 0, t, 0, t, t, t], [1, 128, "Copy", 0, t, 0, t, t, t], [1, 129, "Paste", 0, t, 0, t, t, t], [1, 130, "Find", 0, t, 0, t, t, t], [1, 131, "AudioVolumeMute", 117, "AudioVolumeMute", 173, "VK_VOLUME_MUTE", t, t], [1, 132, "AudioVolumeUp", 118, "AudioVolumeUp", 175, "VK_VOLUME_UP", t, t], [1, 133, "AudioVolumeDown", 119, "AudioVolumeDown", 174, "VK_VOLUME_DOWN", t, t], [1, 134, "NumpadComma", 110, "NumPad_Separator", 108, "VK_SEPARATOR", t, t], [0, 135, "IntlRo", 115, "ABNT_C1", 193, "VK_ABNT_C1", t, t], [1, 136, "KanaMode", 0, t, 0, t, t, t], [0, 137, "IntlYen", 0, t, 0, t, t, t], [1, 138, "Convert", 0, t, 0, t, t, t], [1, 139, "NonConvert", 0, t, 0, t, t, t], [1, 140, "Lang1", 0, t, 0, t, t, t], [1, 141, "Lang2", 0, t, 0, t, t, t], [1, 142, "Lang3", 0, t, 0, t, t, t], [1, 143, "Lang4", 0, t, 0, t, t, t], [1, 144, "Lang5", 0, t, 0, t, t, t], [1, 145, "Abort", 0, t, 0, t, t, t], [1, 146, "Props", 0, t, 0, t, t, t], [1, 147, "NumpadParenLeft", 0, t, 0, t, t, t], [1, 148, "NumpadParenRight", 0, t, 0, t, t, t], [1, 149, "NumpadBackspace", 0, t, 0, t, t, t], [1, 150, "NumpadMemoryStore", 0, t, 0, t, t, t], [1, 151, "NumpadMemoryRecall", 0, t, 0, t, t, t], [1, 152, "NumpadMemoryClear", 0, t, 0, t, t, t], [1, 153, "NumpadMemoryAdd", 0, t, 0, t, t, t], [1, 154, "NumpadMemorySubtract", 0, t, 0, t, t, t], [1, 155, "NumpadClear", 131, "Clear", 12, "VK_CLEAR", t, t], [1, 156, "NumpadClearEntry", 0, t, 0, t, t, t], [1, 0, t, 5, "Ctrl", 17, "VK_CONTROL", t, t], [1, 0, t, 4, "Shift", 16, "VK_SHIFT", t, t], [1, 0, t, 6, "Alt", 18, "VK_MENU", t, t], [1, 0, t, 57, "Meta", 91, "VK_COMMAND", t, t], [1, 157, "ControlLeft", 5, t, 0, "VK_LCONTROL", t, t], [1, 158, "ShiftLeft", 4, t, 0, "VK_LSHIFT", t, t], [1, 159, "AltLeft", 6, t, 0, "VK_LMENU", t, t], [1, 160, "MetaLeft", 57, t, 0, "VK_LWIN", t, t], [1, 161, "ControlRight", 5, t, 0, "VK_RCONTROL", t, t], [1, 162, "ShiftRight", 4, t, 0, "VK_RSHIFT", t, t], [1, 163, "AltRight", 6, t, 0, "VK_RMENU", t, t], [1, 164, "MetaRight", 57, t, 0, "VK_RWIN", t, t], [1, 165, "BrightnessUp", 0, t, 0, t, t, t], [1, 166, "BrightnessDown", 0, t, 0, t, t, t], [1, 167, "MediaPlay", 0, t, 0, t, t, t], [1, 168, "MediaRecord", 0, t, 0, t, t, t], [1, 169, "MediaFastForward", 0, t, 0, t, t, t], [1, 170, "MediaRewind", 0, t, 0, t, t, t], [1, 171, "MediaTrackNext", 124, "MediaTrackNext", 176, "VK_MEDIA_NEXT_TRACK", t, t], [1, 172, "MediaTrackPrevious", 125, "MediaTrackPrevious", 177, "VK_MEDIA_PREV_TRACK", t, t], [1, 173, "MediaStop", 126, "MediaStop", 178, "VK_MEDIA_STOP", t, t], [1, 174, "Eject", 0, t, 0, t, t, t], [1, 175, "MediaPlayPause", 127, "MediaPlayPause", 179, "VK_MEDIA_PLAY_PAUSE", t, t], [1, 176, "MediaSelect", 128, "LaunchMediaPlayer", 181, "VK_MEDIA_LAUNCH_MEDIA_SELECT", t, t], [1, 177, "LaunchMail", 129, "LaunchMail", 180, "VK_MEDIA_LAUNCH_MAIL", t, t], [1, 178, "LaunchApp2", 130, "LaunchApp2", 183, "VK_MEDIA_LAUNCH_APP2", t, t], [1, 179, "LaunchApp1", 0, t, 0, "VK_MEDIA_LAUNCH_APP1", t, t], [1, 180, "SelectTask", 0, t, 0, t, t, t], [1, 181, "LaunchScreenSaver", 0, t, 0, t, t, t], [1, 182, "BrowserSearch", 120, "BrowserSearch", 170, "VK_BROWSER_SEARCH", t, t], [1, 183, "BrowserHome", 121, "BrowserHome", 172, "VK_BROWSER_HOME", t, t], [1, 184, "BrowserBack", 122, "BrowserBack", 166, "VK_BROWSER_BACK", t, t], [1, 185, "BrowserForward", 123, "BrowserForward", 167, "VK_BROWSER_FORWARD", t, t], [1, 186, "BrowserStop", 0, t, 0, "VK_BROWSER_STOP", t, t], [1, 187, "BrowserRefresh", 0, t, 0, "VK_BROWSER_REFRESH", t, t], [1, 188, "BrowserFavorites", 0, t, 0, "VK_BROWSER_FAVORITES", t, t], [1, 189, "ZoomToggle", 0, t, 0, t, t, t], [1, 190, "MailReply", 0, t, 0, t, t, t], [1, 191, "MailForward", 0, t, 0, t, t, t], [1, 192, "MailSend", 0, t, 0, t, t, t], // See https://lists.w3.org/Archives/Public/www-dom/2010JulSep/att-0182/keyCode-spec.html // If an Input Method Editor is processing key input and the event is keydown, return 229. [1, 0, t, 114, "KeyInComposition", 229, t, t, t], [1, 0, t, 116, "ABNT_C2", 194, "VK_ABNT_C2", t, t], [1, 0, t, 96, "OEM_8", 223, "VK_OEM_8", t, t], [1, 0, t, 0, t, 0, "VK_KANA", t, t], [1, 0, t, 0, t, 0, "VK_HANGUL", t, t], [1, 0, t, 0, t, 0, "VK_JUNJA", t, t], [1, 0, t, 0, t, 0, "VK_FINAL", t, t], [1, 0, t, 0, t, 0, "VK_HANJA", t, t], [1, 0, t, 0, t, 0, "VK_KANJI", t, t], [1, 0, t, 0, t, 0, "VK_CONVERT", t, t], [1, 0, t, 0, t, 0, "VK_NONCONVERT", t, t], [1, 0, t, 0, t, 0, "VK_ACCEPT", t, t], [1, 0, t, 0, t, 0, "VK_MODECHANGE", t, t], [1, 0, t, 0, t, 0, "VK_SELECT", t, t], [1, 0, t, 0, t, 0, "VK_PRINT", t, t], [1, 0, t, 0, t, 0, "VK_EXECUTE", t, t], [1, 0, t, 0, t, 0, "VK_SNAPSHOT", t, t], [1, 0, t, 0, t, 0, "VK_HELP", t, t], [1, 0, t, 0, t, 0, "VK_APPS", t, t], [1, 0, t, 0, t, 0, "VK_PROCESSKEY", t, t], [1, 0, t, 0, t, 0, "VK_PACKET", t, t], [1, 0, t, 0, t, 0, "VK_DBE_SBCSCHAR", t, t], [1, 0, t, 0, t, 0, "VK_DBE_DBCSCHAR", t, t], [1, 0, t, 0, t, 0, "VK_ATTN", t, t], [1, 0, t, 0, t, 0, "VK_CRSEL", t, t], [1, 0, t, 0, t, 0, "VK_EXSEL", t, t], [1, 0, t, 0, t, 0, "VK_EREOF", t, t], [1, 0, t, 0, t, 0, "VK_PLAY", t, t], [1, 0, t, 0, t, 0, "VK_ZOOM", t, t], [1, 0, t, 0, t, 0, "VK_NONAME", t, t], [1, 0, t, 0, t, 0, "VK_PA1", t, t], [1, 0, t, 0, t, 0, "VK_OEM_CLEAR", t, t] ], n = [], r = []; for (const i of e) { const [s, a, o, l, c, h, u, f, m] = i; if (r[a] || (r[a] = !0, Fh[o] = a, Eh[o.toLowerCase()] = a), !n[l]) { if (n[l] = !0, !c) throw new Error(`String representation missing for key code ${l} around scan code ${o}`); tr.define(l, c), si.define(l, f || c), ai.define(l, m || f || c); } h && (Rh[h] = l); } })(); var ys; (function(t) { function e(o) { return tr.keyCodeToStr(o); } t.toString = e; function n(o) { return tr.strToKeyCode(o); } t.fromString = n; function r(o) { return si.keyCodeToStr(o); } t.toUserSettingsUS = r; function i(o) { return ai.keyCodeToStr(o); } t.toUserSettingsGeneral = i; function s(o) { return si.strToKeyCode(o) || ai.strToKeyCode(o); } t.fromUserSettings = s; function a(o) { if (o >= 98 && o <= 113) return null; switch (o) { case 16: return "Up"; case 18: return "Down"; case 15: return "Left"; case 17: return "Right"; } return tr.keyCodeToStr(o); } t.toElectronAccelerator = a; })(ys || (ys = {})); function Dh(t, e) { const n = (e & 65535) << 16 >>> 0; return (t | n) >>> 0; } class Me extends we { constructor(e, n, r, i) { super(e, n, r, i), this.selectionStartLineNumber = e, this.selectionStartColumn = n, this.positionLineNumber = r, this.positionColumn = i; } /** * Transform to a human-readable representation. */ toString() { return "[" + this.selectionStartLineNumber + "," + this.selectionStartColumn + " -> " + this.positionLineNumber + "," + this.positionColumn + "]"; } /** * Test if equals other selection. */ equalsSelection(e) { return Me.selectionsEqual(this, e); } /** * Test if the two selections are equal. */ static selectionsEqual(e, n) { return e.selectionStartLineNumber === n.selectionStartLineNumber && e.selectionStartColumn === n.selectionStartColumn && e.positionLineNumber === n.positionLineNumber && e.positionColumn === n.positionColumn; } /** * Get directions (LTR or RTL). */ getDirection() { return this.selectionStartLineNumber === this.startLineNumber && this.selectionStartColumn === this.startColumn ? 0 : 1; } /** * Create a new selection with a different `positionLineNumber` and `positionColumn`. */ setEndPosition(e, n) { return this.getDirection() === 0 ? new Me(this.startLineNumber, this.startColumn, e, n) : new Me(e, n, this.startLineNumber, this.startColumn); } /** * Get the position at `positionLineNumber` and `positionColumn`. */ getPosition() { return new Qe(this.positionLineNumber, this.positionColumn); } /** * Get the position at the start of the selection. */ getSelectionStart() { return new Qe(this.selectionStartLineNumber, this.selectionStartColumn); } /** * Create a new selection with a different `selectionStartLineNumber` and `selectionStartColumn`. */ setStartPosition(e, n) { return this.getDirection() === 0 ? new Me(e, n, this.endLineNumber, this.endColumn) : new Me(this.endLineNumber, this.endColumn, e, n); } // ---- /** * Create a `Selection` from one or two positions */ static fromPositions(e, n = e) { return new Me(e.lineNumber, e.column, n.lineNumber, n.column); } /** * Creates a `Selection` from a range, given a direction. */ static fromRange(e, n) { return n === 0 ? new Me(e.startLineNumber, e.startColumn, e.endLineNumber, e.endColumn) : new Me(e.endLineNumber, e.endColumn, e.startLineNumber, e.startColumn); } /** * Create a `Selection` from an `ISelection`. */ static liftSelection(e) { return new Me(e.selectionStartLineNumber, e.selectionStartColumn, e.positionLineNumber, e.positionColumn); } /** * `a` equals `b`. */ static selectionsArrEqual(e, n) { if (e && !n || !e && n) return !1; if (!e && !n) return !0; if (e.length !== n.length) return !1; for (let r = 0, i = e.length; r < i; r++) if (!this.selectionsEqual(e[r], n[r])) return !1; return !0; } /** * Test if `obj` is an `ISelection`. */ static isISelection(e) { return e && typeof e.selectionStartLineNumber == "number" && typeof e.selectionStartColumn == "number" && typeof e.positionLineNumber == "number" && typeof e.positionColumn == "number"; } /** * Create with a direction. */ static createWithDirection(e, n, r, i, s) { return s === 0 ? new Me(e, n, r, i) : new Me(r, i, e, n); } } const ws = /* @__PURE__ */ Object.create(null); function d(t, e) { if (pc(e)) { const n = ws[e]; if (n === void 0) throw new Error(`${t} references an unknown codicon: ${e}`); e = n; } return ws[t] = e, { id: t }; } const q = { // built-in icons, with image name add: d("add", 6e4), plus: d("plus", 6e4), gistNew: d("gist-new", 6e4), repoCreate: d("repo-create", 6e4), lightbulb: d("lightbulb", 60001), lightBulb: d("light-bulb", 60001), repo: d("repo", 60002), repoDelete: d("repo-delete", 60002), gistFork: d("gist-fork", 60003), repoForked: d("repo-forked", 60003), gitPullRequest: d("git-pull-request", 60004), gitPullRequestAbandoned: d("git-pull-request-abandoned", 60004), recordKeys: d("record-keys", 60005), keyboard: d("keyboard", 60005), tag: d("tag", 60006), tagAdd: d("tag-add", 60006), tagRemove: d("tag-remove", 60006), gitPullRequestLabel: d("git-pull-request-label", 60006), person: d("person", 60007), personFollow: d("person-follow", 60007), personOutline: d("person-outline", 60007), personFilled: d("person-filled", 60007), gitBranch: d("git-branch", 60008), gitBranchCreate: d("git-branch-create", 60008), gitBranchDelete: d("git-branch-delete", 60008), sourceControl: d("source-control", 60008), mirror: d("mirror", 60009), mirrorPublic: d("mirror-public", 60009), star: d("star", 60010), starAdd: d("star-add", 60010), starDelete: d("star-delete", 60010), starEmpty: d("star-empty", 60010), comment: d("comment", 60011), commentAdd: d("comment-add", 60011), alert: d("alert", 60012), warning: d("warning", 60012), search: d("search", 60013), searchSave: d("search-save", 60013), logOut: d("log-out", 60014), signOut: d("sign-out", 60014), logIn: d("log-in", 60015), signIn: d("sign-in", 60015), eye: d("eye", 60016), eyeUnwatch: d("eye-unwatch", 60016), eyeWatch: d("eye-watch", 60016), circleFilled: d("circle-filled", 60017), primitiveDot: d("primitive-dot", 60017), closeDirty: d("close-dirty", 60017), debugBreakpoint: d("debug-breakpoint", 60017), debugBreakpointDisabled: d("debug-breakpoint-disabled", 60017), debugHint: d("debug-hint", 60017), primitiveSquare: d("primitive-square", 60018), edit: d("edit", 60019), pencil: d("pencil", 60019), info: d("info", 60020), issueOpened: d("issue-opened", 60020), gistPrivate: d("gist-private", 60021), gitForkPrivate: d("git-fork-private", 60021), lock: d("lock", 60021), mirrorPrivate: d("mirror-private", 60021), close: d("close", 60022), removeClose: d("remove-close", 60022), x: d("x", 60022), repoSync: d("repo-sync", 60023), sync: d("sync", 60023), clone: d("clone", 60024), desktopDownload: d("desktop-download", 60024), beaker: d("beaker", 60025), microscope: d("microscope", 60025), vm: d("vm", 60026), deviceDesktop: d("device-desktop", 60026), file: d("file", 60027), fileText: d("file-text", 60027), more: d("more", 60028), ellipsis: d("ellipsis", 60028), kebabHorizontal: d("kebab-horizontal", 60028), mailReply: d("mail-reply", 60029), reply: d("reply", 60029), organization: d("organization", 60030), organizationFilled: d("organization-filled", 60030), organizationOutline: d("organization-outline", 60030), newFile: d("new-file", 60031), fileAdd: d("file-add", 60031), newFolder: d("new-folder", 60032), fileDirectoryCreate: d("file-directory-create", 60032), trash: d("trash", 60033), trashcan: d("trashcan", 60033), history: d("history", 60034), clock: d("clock", 60034), folder: d("folder", 60035), fileDirectory: d("file-directory", 60035), symbolFolder: d("symbol-folder", 60035), logoGithub: d("logo-github", 60036), markGithub: d("mark-github", 60036), github: d("github", 60036), terminal: d("terminal", 60037), console: d("console", 60037), repl: d("repl", 60037), zap: d("zap", 60038), symbolEvent: d("symbol-event", 60038), error: d("error", 60039), stop: d("stop", 60039), variable: d("variable", 60040), symbolVariable: d("symbol-variable", 60040), array: d("array", 60042), symbolArray: d("symbol-array", 60042), symbolModule: d("symbol-module", 60043), symbolPackage: d("symbol-package", 60043), symbolNamespace: d("symbol-namespace", 60043), symbolObject: d("symbol-object", 60043), symbolMethod: d("symbol-method", 60044), symbolFunction: d("symbol-function", 60044), symbolConstructor: d("symbol-constructor", 60044), symbolBoolean: d("symbol-boolean", 60047), symbolNull: d("symbol-null", 60047), symbolNumeric: d("symbol-numeric", 60048), symbolNumber: d("symbol-number", 60048), symbolStructure: d("symbol-structure", 60049), symbolStruct: d("symbol-struct", 60049), symbolParameter: d("symbol-parameter", 60050), symbolTypeParameter: d("symbol-type-parameter", 60050), symbolKey: d("symbol-key", 60051), symbolText: d("symbol-text", 60051), symbolReference: d("symbol-reference", 60052), goToFile: d("go-to-file", 60052), symbolEnum: d("symbol-enum", 60053), symbolValue: d("symbol-value", 60053), symbolRuler: d("symbol-ruler", 60054), symbolUnit: d("symbol-unit", 60054), activateBreakpoints: d("activate-breakpoints", 60055), archive: d("archive", 60056), arrowBoth: d("arrow-both", 60057), arrowDown: d("arrow-down", 60058), arrowLeft: d("arrow-left", 60059), arrowRight: d("arrow-right", 60060), arrowSmallDown: d("arrow-small-down", 60061), arrowSmallLeft: d("arrow-small-left", 60062), arrowSmallRight: d("arrow-small-right", 60063), arrowSmallUp: d("arrow-small-up", 60064), arrowUp: d("arrow-up", 60065), bell: d("bell", 60066), bold: d("bold", 60067), book: d("book", 60068), bookmark: d("bookmark", 60069), debugBreakpointConditionalUnverified: d("debug-breakpoint-conditional-unverified", 60070), debugBreakpointConditional: d("debug-breakpoint-conditional", 60071), debugBreakpointConditionalDisabled: d("debug-breakpoint-conditional-disabled", 60071), debugBreakpointDataUnverified: d("debug-breakpoint-data-unverified", 60072), debugBreakpointData: d("debug-breakpoint-data", 60073), debugBreakpointDataDisabled: d("debug-breakpoint-data-disabled", 60073), debugBreakpointLogUnverified: d("debug-breakpoint-log-unverified", 60074), debugBreakpointLog: d("debug-breakpoint-log", 60075), debugBreakpointLogDisabled: d("debug-breakpoint-log-disabled", 60075), briefcase: d("briefcase", 60076), broadcast: d("broadcast", 60077), browser: d("browser", 60078), bug: d("bug", 60079), calendar: d("calendar", 60080), caseSensitive: d("case-sensitive", 60081), check: d("check", 60082), checklist: d("checklist", 60083), chevronDown: d("chevron-down", 60084), dropDownButton: d("drop-down-button", 60084), chevronLeft: d("chevron-left", 60085), chevronRight: d("chevron-right", 60086), chevronUp: d("chevron-up", 60087), chromeClose: d("chrome-close", 60088), chromeMaximize: d("chrome-maximize", 60089), chromeMinimize: d("chrome-minimize", 60090), chromeRestore: d("chrome-restore", 60091), circle: d("circle", 60092), circleOutline: d("circle-outline", 60092), debugBreakpointUnverified: d("debug-breakpoint-unverified", 60092), circleSlash: d("circle-slash", 60093), circuitBoard: d("circuit-board", 60094), clearAll: d("clear-all", 60095), clippy: d("clippy", 60096), closeAll: d("close-all", 60097), cloudDownload: d("cloud-download", 60098), cloudUpload: d("cloud-upload", 60099), code: d("code", 60100), collapseAll: d("collapse-all", 60101), colorMode: d("color-mode", 60102), commentDiscussion: d("comment-discussion", 60103), compareChanges: d("compare-changes", 60157), creditCard: d("credit-card", 60105), dash: d("dash", 60108), dashboard: d("dashboard", 60109), database: d("database", 60110), debugContinue: d("debug-continue", 60111), debugDisconnect: d("debug-disconnect", 60112), debugPause: d("debug-pause", 60113), debugRestart: d("debug-restart", 60114), debugStart: d("debug-start", 60115), debugStepInto: d("debug-step-into", 60116), debugStepOut: d("debug-step-out", 60117), debugStepOver: d("debug-step-over", 60118), debugStop: d("debug-stop", 60119), debug: d("debug", 60120), deviceCameraVideo: d("device-camera-video", 60121), deviceCamera: d("device-camera", 60122), deviceMobile: d("device-mobile", 60123), diffAdded: d("diff-added", 60124), diffIgnored: d("diff-ignored", 60125), diffModified: d("diff-modified", 60126), diffRemoved: d("diff-removed", 60127), diffRenamed: d("diff-renamed", 60128), diff: d("diff", 60129), discard: d("discard", 60130), editorLayout: d("editor-layout", 60131), emptyWindow: d("empty-window", 60132), exclude: d("exclude", 60133), extensions: d("extensions", 60134), eyeClosed: d("eye-closed", 60135), fileBinary: d("file-binary", 60136), fileCode: d("file-code", 60137), fileMedia: d("file-media", 60138), filePdf: d("file-pdf", 60139), fileSubmodule: d("file-submodule", 60140), fileSymlinkDirectory: d("file-symlink-directory", 60141), fileSymlinkFile: d("file-symlink-file", 60142), fileZip: d("file-zip", 60143), files: d("files", 60144), filter: d("filter", 60145), flame: d("flame", 60146), foldDown: d("fold-down", 60147), foldUp: d("fold-up", 60148), fold: d("fold", 60149), folderActive: d("folder-active", 60150), folderOpened: d("folder-opened", 60151), gear: d("gear", 60152), gift: d("gift", 60153), gistSecret: d("gist-secret", 60154), gist: d("gist", 60155), gitCommit: d("git-commit", 60156), gitCompare: d("git-compare", 60157), gitMerge: d("git-merge", 60158), githubAction: d("github-action", 60159), githubAlt: d("github-alt", 60160), globe: d("globe", 60161), grabber: d("grabber", 60162), graph: d("graph", 60163), gripper: d("gripper", 60164), heart: d("heart", 60165), home: d("home", 60166), horizontalRule: d("horizontal-rule", 60167), hubot: d("hubot", 60168), inbox: d("inbox", 60169), issueClosed: d("issue-closed", 60324), issueReopened: d("issue-reopened", 60171), issues: d("issues", 60172), italic: d("italic", 60173), jersey: d("jersey", 60174), json: d("json", 60175), bracket: d("bracket", 60175), kebabVertical: d("kebab-vertical", 60176), key: d("key", 60177), law: d("law", 60178), lightbulbAutofix: d("lightbulb-autofix", 60179), linkExternal: d("link-external", 60180), link: d("link", 60181), listOrdered: d("list-ordered", 60182), listUnordered: d("list-unordered", 60183), liveShare: d("live-share", 60184), loading: d("loading", 60185), location: d("location", 60186), mailRead: d("mail-read", 60187), mail: d("mail", 60188), markdown: d("markdown", 60189), megaphone: d("megaphone", 60190), mention: d("mention", 60191), milestone: d("milestone", 60192), gitPullRequestMilestone: d("git-pull-request-milestone", 60192), mortarBoard: d("mortar-board", 60193), move: d("move", 60194), multipleWindows: d("multiple-windows", 60195), mute: d("mute", 60196), noNewline: d("no-newline", 60197), note: d("note", 60198), octoface: d("octoface", 60199), openPreview: d("open-preview", 60200), package: d("package", 60201), paintcan: d("paintcan", 60202), pin: d("pin", 60203), play: d("play", 60204), run: d("run", 60204), plug: d("plug", 60205), preserveCase: d("preserve-case", 60206), preview: d("preview", 60207), project: d("project", 60208), pulse: d("pulse", 60209), question: d("question", 60210), quote: d("quote", 60211), radioTower: d("radio-tower", 60212), reactions: d("reactions", 60213), references: d("references", 60214), refresh: d("refresh", 60215), regex: d("regex", 60216), remoteExplorer: d("remote-explorer", 60217), remote: d("remote", 60218), remove: d("remove", 60219), replaceAll: d("replace-all", 60220), replace: d("replace", 60221), repoClone: d("repo-clone", 60222), repoForcePush: d("repo-force-push", 60223), repoPull: d("repo-pull", 60224), repoPush: d("repo-push", 60225), report: d("report", 60226), requestChanges: d("request-changes", 60227), rocket: d("rocket", 60228), rootFolderOpened: d("root-folder-opened", 60229), rootFolder: d("root-folder", 60230), rss: d("rss", 60231), ruby: d("ruby", 60232), saveAll: d("save-all", 60233), saveAs: d("save-as", 60234), save: d("save", 60235), screenFull: d("screen-full", 60236), screenNormal: d("screen-normal", 60237), searchStop: d("search-stop", 60238), server: d("server", 60240), settingsGear: d("settings-gear", 60241), settings: d("settings", 60242), shield: d("shield", 60243), smiley: d("smiley", 60244), sortPrecedence: d("sort-precedence", 60245), splitHorizontal: d("split-horizontal", 60246), splitVertical: d("split-vertical", 60247), squirrel: d("squirrel", 60248), starFull: d("star-full", 60249), starHalf: d("star-half", 60250), symbolClass: d("symbol-class", 60251), symbolColor: d("symbol-color", 60252), symbolCustomColor: d("symbol-customcolor", 60252), symbolConstant: d("symbol-constant", 60253), symbolEnumMember: d("symbol-enum-member", 60254), symbolField: d("symbol-field", 60255), symbolFile: d("symbol-file", 60256), symbolInterface: d("symbol-interface", 60257), symbolKeyword: d("symbol-keyword", 60258), symbolMisc: d("symbol-misc", 60259), symbolOperator: d("symbol-operator", 60260), symbolProperty: d("symbol-property", 60261), wrench: d("wrench", 60261), wrenchSubaction: d("wrench-subaction", 60261), symbolSnippet: d("symbol-snippet", 60262), tasklist: d("tasklist", 60263), telescope: d("telescope", 60264), textSize: d("text-size", 60265), threeBars: d("three-bars", 60266), thumbsdown: d("thumbsdown", 60267), thumbsup: d("thumbsup", 60268), tools: d("tools", 60269), triangleDown: d("triangle-down", 60270), triangleLeft: d("triangle-left", 60271), triangleRight: d("triangle-right", 60272), triangleUp: d("triangle-up", 60273), twitter: d("twitter", 60274), unfold: d("unfold", 60275), unlock: d("unlock", 60276), unmute: d("unmute", 60277), unverified: d("unverified", 60278), verified: d("verified", 60279), versions: d("versions", 60280), vmActive: d("vm-active", 60281), vmOutline: d("vm-outline", 60282), vmRunning: d("vm-running", 60283), watch: d("watch", 60284), whitespace: d("whitespace", 60285), wholeWord: d("whole-word", 60286), window: d("window", 60287), wordWrap: d("word-wrap", 60288), zoomIn: d("zoom-in", 60289), zoomOut: d("zoom-out", 60290), listFilter: d("list-filter", 60291), listFlat: d("list-flat", 60292), listSelection: d("list-selection", 60293), selection: d("selection", 60293), listTree: d("list-tree", 60294), debugBreakpointFunctionUnverified: d("debug-breakpoint-function-unverified", 60295), debugBreakpointFunction: d("debug-breakpoint-function", 60296), debugBreakpointFunctionDisabled: d("debug-breakpoint-function-disabled", 60296), debugStackframeActive: d("debug-stackframe-active", 60297), circleSmallFilled: d("circle-small-filled", 60298), debugStackframeDot: d("debug-stackframe-dot", 60298), debugStackframe: d("debug-stackframe", 60299), debugStackframeFocused: d("debug-stackframe-focused", 60299), debugBreakpointUnsupported: d("debug-breakpoint-unsupported", 60300), symbolString: d("symbol-string", 60301), debugReverseContinue: d("debug-reverse-continue", 60302), debugStepBack: d("debug-step-back", 60303), debugRestartFrame: d("debug-restart-frame", 60304), callIncoming: d("call-incoming", 60306), callOutgoing: d("call-outgoing", 60307), menu: d("menu", 60308), expandAll: d("expand-all", 60309), feedback: d("feedback", 60310), gitPullRequestReviewer: d("git-pull-request-reviewer", 60310), groupByRefType: d("group-by-ref-type", 60311), ungroupByRefType: d("ungroup-by-ref-type", 60312), account: d("account", 60313), gitPullRequestAssignee: d("git-pull-request-assignee", 60313), bellDot: d("bell-dot", 60314), debugConsole: d("debug-console", 60315), library: d("library", 60316), output: d("output", 60317), runAll: d("run-all", 60318), syncIgnored: d("sync-ignored", 60319), pinned: d("pinned", 60320), githubInverted: d("github-inverted", 60321), debugAlt: d("debug-alt", 60305), serverProcess: d("server-process", 60322), serverEnvironment: d("server-environment", 60323), pass: d("pass", 60324), stopCircle: d("stop-circle", 60325), playCircle: d("play-circle", 60326), record: d("record", 60327), debugAltSmall: d("debug-alt-small", 60328), vmConnect: d("vm-connect", 60329), cloud: d("cloud", 60330), merge: d("merge", 60331), exportIcon: d("export", 60332), graphLeft: d("graph-left", 60333), magnet: d("magnet", 60334), notebook: d("notebook", 60335), redo: d("redo", 60336), checkAll: d("check-all", 60337), pinnedDirty: d("pinned-dirty", 60338), passFilled: d("pass-filled", 60339), circleLargeFilled: d("circle-large-filled", 60340), circleLarge: d("circle-large", 60341), circleLargeOutline: d("circle-large-outline", 60341), combine: d("combine", 60342), gather: d("gather", 60342), table: d("table", 60343), variableGroup: d("variable-group", 60344), typeHierarchy: d("type-hierarchy", 60345), typeHierarchySub: d("type-hierarchy-sub", 60346), typeHierarchySuper: d("type-hierarchy-super", 60347), gitPullRequestCreate: d("git-pull-request-create", 60348), runAbove: d("run-above", 60349), runBelow: d("run-below", 60350), notebookTemplate: d("notebook-template", 60351), debugRerun: d("debug-rerun", 60352), workspaceTrusted: d("workspace-trusted", 60353), workspaceUntrusted: d("workspace-untrusted", 60354), workspaceUnspecified: d("workspace-unspecified", 60355), terminalCmd: d("terminal-cmd", 60356), terminalDebian: d("terminal-debian", 60357), terminalLinux: d("terminal-linux", 60358), terminalPowershell: d("terminal-powershell", 60359), terminalTmux: d("terminal-tmux", 60360), terminalUbuntu: d("terminal-ubuntu", 60361), terminalBash: d("terminal-bash", 60362), arrowSwap: d("arrow-swap", 60363), copy: d("copy", 60364), personAdd: d("person-add", 60365), filterFilled: d("filter-filled", 60366), wand: d("wand", 60367), debugLineByLine: d("debug-line-by-line", 60368), inspect: d("inspect", 60369), layers: d("layers", 60370), layersDot: d("layers-dot", 60371), layersActive: d("layers-active", 60372), compass: d("compass", 60373), compassDot: d("compass-dot", 60374), compassActive: d("compass-active", 60375), azure: d("azure", 60376), issueDraft: d("issue-draft", 60377), gitPullRequestClosed: d("git-pull-request-closed", 60378), gitPullRequestDraft: d("git-pull-request-draft", 60379), debugAll: d("debug-all", 60380), debugCoverage: d("debug-coverage", 60381), runErrors: d("run-errors", 60382), folderLibrary: d("folder-library", 60383), debugContinueSmall: d("debug-continue-small", 60384), beakerStop: d("beaker-stop", 60385), graphLine: d("graph-line", 60386), graphScatter: d("graph-scatter", 60387), pieChart: d("pie-chart", 60388), bracketDot: d("bracket-dot", 60389), bracketError: d("bracket-error", 60390), lockSmall: d("lock-small", 60391), azureDevops: d("azure-devops", 60392), verifiedFilled: d("verified-filled", 60393), newLine: d("newline", 60394), layout: d("layout", 60395), layoutActivitybarLeft: d("layout-activitybar-left", 60396), layoutActivitybarRight: d("layout-activitybar-right", 60397), layoutPanelLeft: d("layout-panel-left", 60398), layoutPanelCenter: d("layout-panel-center", 60399), layoutPanelJustify: d("layout-panel-justify", 60400), layoutPanelRight: d("layout-panel-right", 60401), layoutPanel: d("layout-panel", 60402), layoutSidebarLeft: d("layout-sidebar-left", 60403), layoutSidebarRight: d("layout-sidebar-right", 60404), layoutStatusbar: d("layout-statusbar", 60405), layoutMenubar: d("layout-menubar", 60406), layoutCentered: d("layout-centered", 60407), layoutSidebarRightOff: d("layout-sidebar-right-off", 60416), layoutPanelOff: d("layout-panel-off", 60417), layoutSidebarLeftOff: d("layout-sidebar-left-off", 60418), target: d("target", 60408), indent: d("indent", 60409), recordSmall: d("record-small", 60410), errorSmall: d("error-small", 60411), arrowCircleDown: d("arrow-circle-down", 60412), arrowCircleLeft: d("arrow-circle-left", 60413), arrowCircleRight: d("arrow-circle-right", 60414), arrowCircleUp: d("arrow-circle-up", 60415), heartFilled: d("heart-filled", 60420), map: d("map", 60421), mapFilled: d("map-filled", 60422), circleSmall: d("circle-small", 60423), bellSlash: d("bell-slash", 60424), bellSlashDot: d("bell-slash-dot", 60425), commentUnresolved: d("comment-unresolved", 60426), gitPullRequestGoToChanges: d("git-pull-request-go-to-changes", 60427), gitPullRequestNewChanges: d("git-pull-request-new-changes", 60428), searchFuzzy: d("search-fuzzy", 60429), commentDraft: d("comment-draft", 60430), send: d("send", 60431), sparkle: d("sparkle", 60432), insert: d("insert", 60433), mic: d("mic", 60434), // derived icons, that could become separate icons dialogError: d("dialog-error", "error"), dialogWarning: d("dialog-warning", "warning"), dialogInfo: d("dialog-info", "info"), dialogClose: d("dialog-close", "close"), treeItemExpanded: d("tree-item-expanded", "chevron-down"), // collapsed is done with rotation treeFilterOnTypeOn: d("tree-filter-on-type-on", "list-filter"), treeFilterOnTypeOff: d("tree-filter-on-type-off", "list-selection"), treeFilterClear: d("tree-filter-clear", "close"), treeItemLoading: d("tree-item-loading", "loading"), menuSelection: d("menu-selection", "check"), menuSubmenu: d("menu-submenu", "chevron-right"), menuBarMore: d("menubar-more", "more"), scrollbarButtonLeft: d("scrollbar-button-left", "triangle-left"), scrollbarButtonRight: d("scrollbar-button-right", "triangle-right"), scrollbarButtonUp: d("scrollbar-button-up", "triangle-up"), scrollbarButtonDown: d("scrollbar-button-down", "triangle-down"), toolBarMore: d("toolbar-more", "more"), quickInputBack: d("quick-input-back", "arrow-left") }; var oi = globalThis && globalThis.__awaiter || function(t, e, n, r) { function i(s) { return s instanceof n ? s : new n(function(a) { a(s); }); } return new (n || (n = Promise))(function(s, a) { function o(h) { try { c(r.next(h)); } catch (u) { a(u); } } function l(h) { try { c(r.throw(h)); } catch (u) { a(u); } } function c(h) { h.done ? s(h.value) : i(h.value).then(o, l); } c((r = r.apply(t, e || [])).next()); }); }; class Ah { constructor() { this._tokenizationSupports = /* @__PURE__ */ new Map(), this._factories = /* @__PURE__ */ new Map(), this._onDidChange = new je(), this.onDidChange = this._onDidChange.event, this._colorMap = null; } handleChange(e) { this._onDidChange.fire({ changedLanguages: e, changedColorMap: !1 }); } register(e, n) { return this._tokenizationSupports.set(e, n), this.handleChange([e]), yn(() => { this._tokenizationSupports.get(e) === n && (this._tokenizationSupports.delete(e), this.handleChange([e])); }); } get(e) { return this._tokenizationSupports.get(e) || null; } registerFactory(e, n) { var r; (r = this._factories.get(e)) === null || r === void 0 || r.dispose(); const i = new Nh(this, e, n); return this._factories.set(e, i), yn(() => { const s = this._factories.get(e); !s || s !== i || (this._factories.delete(e), s.dispose()); }); } getOrCreate(e) { return oi(this, void 0, void 0, function* () { const n = this.get(e); if (n) return n; const r = this._factories.get(e); return !r || r.isResolved ? null : (yield r.resolve(), this.get(e)); }); } isResolved(e) { if (this.get(e)) return !0; const r = this._factories.get(e); return !!(!r || r.isResolved); } setColorMap(e) { this._colorMap = e, this._onDidChange.fire({ changedLanguages: Array.from(this._tokenizationSupports.keys()), changedColorMap: !0 }); } getColorMap() { return this._colorMap; } getDefaultBackground() { return this._colorMap && this._colorMap.length > 2 ? this._colorMap[ 2 /* ColorId.DefaultBackground */ ] : null; } } class Nh extends wn { get isResolved() { return this._isResolved; } constructor(e, n, r) { super(), this._registry = e, this._languageId = n, this._factory = r, this._isDisposed = !1, this._resolvePromise = null, this._isResolved = !1; } dispose() { this._isDisposed = !0, super.dispose(); } resolve() { return oi(this, void 0, void 0, function* () { return this._resolvePromise || (this._resolvePromise = this._create()), this._resolvePromise; }); } _create() { return oi(this, void 0, void 0, function* () { const e = yield this._factory.tokenizationSupport; this._isResolved = !0, e && !this._isDisposed && this._register(this._registry.register(this._languageId, e)); }); } } class Mh { constructor(e, n, r) { this.offset = e, this.type = n, this.language = r, this._tokenBrand = void 0; } toString() { return "(" + this.offset + ", " + this.type + ")"; } } var xs; (function(t) { const e = /* @__PURE__ */ new Map(); e.set(0, q.symbolMethod), e.set(1, q.symbolFunction), e.set(2, q.symbolConstructor), e.set(3, q.symbolField), e.set(4, q.symbolVariable), e.set(5, q.symbolClass), e.set(6, q.symbolStruct), e.set(7, q.symbolInterface), e.set(8, q.symbolModule), e.set(9, q.symbolProperty), e.set(10, q.symbolEvent), e.set(11, q.symbolOperator), e.set(12, q.symbolUnit), e.set(13, q.symbolValue), e.set(15, q.symbolEnum), e.set(14, q.symbolConstant), e.set(15, q.symbolEnum), e.set(16, q.symbolEnumMember), e.set(17, q.symbolKeyword), e.set(27, q.symbolSnippet), e.set(18, q.symbolText), e.set(19, q.symbolColor), e.set(20, q.symbolFile), e.set(21, q.symbolReference), e.set(22, q.symbolCustomColor), e.set(23, q.symbolFolder), e.set(24, q.symbolTypeParameter), e.set(25, q.account), e.set(26, q.issues); function n(s) { let a = e.get(s); return a || (console.info("No codicon found for CompletionItemKind " + s), a = q.symbolProperty), a; } t.toIcon = n; const r = /* @__PURE__ */ new Map(); r.set( "method", 0 /* CompletionItemKind.Method */ ), r.set( "function", 1 /* CompletionItemKind.Function */ ), r.set( "constructor", 2 /* CompletionItemKind.Constructor */ ), r.set( "field", 3 /* CompletionItemKind.Field */ ), r.set( "variable", 4 /* CompletionItemKind.Variable */ ), r.set( "class", 5 /* CompletionItemKind.Class */ ), r.set( "struct", 6 /* CompletionItemKind.Struct */ ), r.set( "interface", 7 /* CompletionItemKind.Interface */ ), r.set( "module", 8 /* CompletionItemKind.Module */ ), r.set( "property", 9 /* CompletionItemKind.Property */ ), r.set( "event", 10 /* CompletionItemKind.Event */ ), r.set( "operator", 11 /* CompletionItemKind.Operator */ ), r.set( "unit", 12 /* CompletionItemKind.Unit */ ), r.set( "value", 13 /* CompletionItemKind.Value */ ), r.set( "constant", 14 /* CompletionItemKind.Constant */ ), r.set( "enum", 15 /* CompletionItemKind.Enum */ ), r.set( "enum-member", 16 /* CompletionItemKind.EnumMember */ ), r.set( "enumMember", 16 /* CompletionItemKind.EnumMember */ ), r.set( "keyword", 17 /* CompletionItemKind.Keyword */ ), r.set( "snippet", 27 /* CompletionItemKind.Snippet */ ), r.set( "text", 18 /* CompletionItemKind.Text */ ), r.set( "color", 19 /* CompletionItemKind.Color */ ), r.set( "file", 20 /* CompletionItemKind.File */ ), r.set( "reference", 21 /* CompletionItemKind.Reference */ ), r.set( "customcolor", 22 /* CompletionItemKind.Customcolor */ ), r.set( "folder", 23 /* CompletionItemKind.Folder */ ), r.set( "type-parameter", 24 /* CompletionItemKind.TypeParameter */ ), r.set( "typeParameter", 24 /* CompletionItemKind.TypeParameter */ ), r.set( "account", 25 /* CompletionItemKind.User */ ), r.set( "issue", 26 /* CompletionItemKind.Issue */ ); function i(s, a) { let o = r.get(s); return typeof o > "u" && !a && (o = 9), o; } t.fromString = i; })(xs || (xs = {})); var Ss; (function(t) { t[t.Automatic = 0] = "Automatic", t[t.Explicit = 1] = "Explicit"; })(Ss || (Ss = {})); var Cs; (function(t) { t[t.Invoke = 1] = "Invoke", t[t.TriggerCharacter = 2] = "TriggerCharacter", t[t.ContentChange = 3] = "ContentChange"; })(Cs || (Cs = {})); var ks; (function(t) { t[t.Text = 0] = "Text", t[t.Read = 1] = "Read", t[t.Write = 2] = "Write"; })(ks || (ks = {})); oe("Array", "array"), oe("Boolean", "boolean"), oe("Class", "class"), oe("Constant", "constant"), oe("Constructor", "constructor"), oe("Enum", "enumeration"), oe("EnumMember", "enumeration member"), oe("Event", "event"), oe("Field", "field"), oe("File", "file"), oe("Function", "function"), oe("Interface", "interface"), oe("Key", "key"), oe("Method", "method"), oe("Module", "module"), oe("Namespace", "namespace"), oe("Null", "null"), oe("Number", "number"), oe("Object", "object"), oe("Operator", "operator"), oe("Package", "package"), oe("Property", "property"), oe("String", "string"), oe("Struct", "struct"), oe("TypeParameter", "type parameter"), oe("Variable", "variable"); var _s; (function(t) { const e = /* @__PURE__ */ new Map(); e.set(0, q.symbolFile), e.set(1, q.symbolModule), e.set(2, q.symbolNamespace), e.set(3, q.symbolPackage), e.set(4, q.symbolClass), e.set(5, q.symbolMethod), e.set(6, q.symbolProperty), e.set(7, q.symbolField), e.set(8, q.symbolConstructor), e.set(9, q.symbolEnum), e.set(10, q.symbolInterface), e.set(11, q.symbolFunction), e.set(12, q.symbolVariable), e.set(13, q.symbolConstant), e.set(14, q.symbolString), e.set(15, q.symbolNumber), e.set(16, q.symbolBoolean), e.set(17, q.symbolArray), e.set(18, q.symbolObject), e.set(19, q.symbolKey), e.set(20, q.symbolNull), e.set(21, q.symbolEnumMember), e.set(22, q.symbolStruct), e.set(23, q.symbolEvent), e.set(24, q.symbolOperator), e.set(25, q.symbolTypeParameter); function n(r) { let i = e.get(r); return i || (console.info("No codicon found for SymbolKind " + r), i = q.symbolProperty), i; } t.toIcon = n; })(_s || (_s = {})); var Rs; (function(t) { function e(n) { return !n || typeof n != "object" ? !1 : typeof n.id == "string" && typeof n.title == "string"; } t.is = e; })(Rs || (Rs = {})); var Fs; (function(t) { t[t.Type = 1] = "Type", t[t.Parameter = 2] = "Parameter"; })(Fs || (Fs = {})); new Ah(); var Es; (function(t) { t[t.Unknown = 0] = "Unknown", t[t.Disabled = 1] = "Disabled", t[t.Enabled = 2] = "Enabled"; })(Es || (Es = {})); var Ds; (function(t) { t[t.Invoke = 1] = "Invoke", t[t.Auto = 2] = "Auto"; })(Ds || (Ds = {})); var As; (function(t) { t[t.None = 0] = "None", t[t.KeepWhitespace = 1] = "KeepWhitespace", t[t.InsertAsSnippet = 4] = "InsertAsSnippet"; })(As || (As = {})); var Ns; (function(t) { t[t.Method = 0] = "Method", t[t.Function = 1] = "Function", t[t.Constructor = 2] = "Constructor", t[t.Field = 3] = "Field", t[t.Variable = 4] = "Variable", t[t.Class = 5] = "Class", t[t.Struct = 6] = "Struct", t[t.Interface = 7] = "Interface", t[t.Module = 8] = "Module", t[t.Property = 9] = "Property", t[t.Event = 10] = "Event", t[t.Operator = 11] = "Operator", t[t.Unit = 12] = "Unit", t[t.Value = 13] = "Value", t[t.Constant = 14] = "Constant", t[t.Enum = 15] = "Enum", t[t.EnumMember = 16] = "EnumMember", t[t.Keyword = 17] = "Keyword", t[t.Text = 18] = "Text", t[t.Color = 19] = "Color", t[t.File = 20] = "File", t[t.Reference = 21] = "Reference", t[t.Customcolor = 22] = "Customcolor", t[t.Folder = 23] = "Folder", t[t.TypeParameter = 24] = "TypeParameter", t[t.User = 25] = "User", t[t.Issue = 26] = "Issue", t[t.Snippet = 27] = "Snippet"; })(Ns || (Ns = {})); var Ms; (function(t) { t[t.Deprecated = 1] = "Deprecated"; })(Ms || (Ms = {})); var zs; (function(t) { t[t.Invoke = 0] = "Invoke", t[t.TriggerCharacter = 1] = "TriggerCharacter", t[t.TriggerForIncompleteCompletions = 2] = "TriggerForIncompleteCompletions"; })(zs || (zs = {})); var Ls; (function(t) { t[t.EXACT = 0] = "EXACT", t[t.ABOVE = 1] = "ABOVE", t[t.BELOW = 2] = "BELOW"; })(Ls || (Ls = {})); var Ps; (function(t) { t[t.NotSet = 0] = "NotSet", t[t.ContentFlush = 1] = "ContentFlush", t[t.RecoverFromMarkers = 2] = "RecoverFromMarkers", t[t.Explicit = 3] = "Explicit", t[t.Paste = 4] = "Paste", t[t.Undo = 5] = "Undo", t[t.Redo = 6] = "Redo"; })(Ps || (Ps = {})); var Is; (function(t) { t[t.LF = 1] = "LF", t[t.CRLF = 2] = "CRLF"; })(Is || (Is = {})); var Ts; (function(t) { t[t.Text = 0] = "Text", t[t.Read = 1] = "Read", t[t.Write = 2] = "Write"; })(Ts || (Ts = {})); var Ws; (function(t) { t[t.None = 0] = "None", t[t.Keep = 1] = "Keep", t[t.Brackets = 2] = "Brackets", t[t.Advanced = 3] = "Advanced", t[t.Full = 4] = "Full"; })(Ws || (Ws = {})); var Os; (function(t) { t[t.acceptSuggestionOnCommitCharacter = 0] = "acceptSuggestionOnCommitCharacter", t[t.acceptSuggestionOnEnter = 1] = "acceptSuggestionOnEnter", t[t.accessibilitySupport = 2] = "accessibilitySupport", t[t.accessibilityPageSize = 3] = "accessibilityPageSize", t[t.ariaLabel = 4] = "ariaLabel", t[t.ariaRequired = 5] = "ariaRequired", t[t.autoClosingBrackets = 6] = "autoClosingBrackets", t[t.autoClosingComments = 7] = "autoClosingComments", t[t.screenReaderAnnounceInlineSuggestion = 8] = "screenReaderAnnounceInlineSuggestion", t[t.autoClosingDelete = 9] = "autoClosingDelete", t[t.autoClosingOvertype = 10] = "autoClosingOvertype", t[t.autoClosingQuotes = 11] = "autoClosingQuotes", t[t.autoIndent = 12] = "autoIndent", t[t.automaticLayout = 13] = "automaticLayout", t[t.autoSurround = 14] = "autoSurround", t[t.bracketPairColorization = 15] = "bracketPairColorization", t[t.guides = 16] = "guides", t[t.codeLens = 17] = "codeLens", t[t.codeLensFontFamily = 18] = "codeLensFontFamily", t[t.codeLensFontSize = 19] = "codeLensFontSize", t[t.colorDecorators = 20] = "colorDecorators", t[t.colorDecoratorsLimit = 21] = "colorDecoratorsLimit", t[t.columnSelection = 22] = "columnSelection", t[t.comments = 23] = "comments", t[t.contextmenu = 24] = "contextmenu", t[t.copyWithSyntaxHighlighting = 25] = "copyWithSyntaxHighlighting", t[t.cursorBlinking = 26] = "cursorBlinking", t[t.cursorSmoothCaretAnimation = 27] = "cursorSmoothCaretAnimation", t[t.cursorStyle = 28] = "cursorStyle", t[t.cursorSurroundingLines = 29] = "cursorSurroundingLines", t[t.cursorSurroundingLinesStyle = 30] = "cursorSurroundingLinesStyle", t[t.cursorWidth = 31] = "cursorWidth", t[t.disableLayerHinting = 32] = "disableLayerHinting", t[t.disableMonospaceOptimizations = 33] = "disableMonospaceOptimizations", t[t.domReadOnly = 34] = "domReadOnly", t[t.dragAndDrop = 35] = "dragAndDrop", t[t.dropIntoEditor = 36] = "dropIntoEditor", t[t.emptySelectionClipboard = 37] = "emptySelectionClipboard", t[t.experimentalWhitespaceRendering = 38] = "experimentalWhitespaceRendering", t[t.extraEditorClassName = 39] = "extraEditorClassName", t[t.fastScrollSensitivity = 40] = "fastScrollSensitivity", t[t.find = 41] = "find", t[t.fixedOverflowWidgets = 42] = "fixedOverflowWidgets", t[t.folding = 43] = "folding", t[t.foldingStrategy = 44] = "foldingStrategy", t[t.foldingHighlight = 45] = "foldingHighlight", t[t.foldingImportsByDefault = 46] = "foldingImportsByDefault", t[t.foldingMaximumRegions = 47] = "foldingMaximumRegions", t[t.unfoldOnClickAfterEndOfLine = 48] = "unfoldOnClickAfterEndOfLine", t[t.fontFamily = 49] = "fontFamily", t[t.fontInfo = 50] = "fontInfo", t[t.fontLigatures = 51] = "fontLigatures", t[t.fontSize = 52] = "fontSize", t[t.fontWeight = 53] = "fontWeight", t[t.fontVariations = 54] = "fontVariations", t[t.formatOnPaste = 55] = "formatOnPaste", t[t.formatOnType = 56] = "formatOnType", t[t.glyphMargin = 57] = "glyphMargin", t[t.gotoLocation = 58] = "gotoLocation", t[t.hideCursorInOverviewRuler = 59] = "hideCursorInOverviewRuler", t[t.hover = 60] = "hover", t[t.inDiffEditor = 61] = "inDiffEditor", t[t.inlineSuggest = 62] = "inlineSuggest", t[t.letterSpacing = 63] = "letterSpacing", t[t.lightbulb = 64] = "lightbulb", t[t.lineDecorationsWidth = 65] = "lineDecorationsWidth", t[t.lineHeight = 66] = "lineHeight", t[t.lineNumbers = 67] = "lineNumbers", t[t.lineNumbersMinChars = 68] = "lineNumbersMinChars", t[t.linkedEditing = 69] = "linkedEditing", t[t.links = 70] = "links", t[t.matchBrackets = 71] = "matchBrackets", t[t.minimap = 72] = "minimap", t[t.mouseStyle = 73] = "mouseStyle", t[t.mouseWheelScrollSensitivity = 74] = "mouseWheelScrollSensitivity", t[t.mouseWheelZoom = 75] = "mouseWheelZoom", t[t.multiCursorMergeOverlapping = 76] = "multiCursorMergeOverlapping", t[t.multiCursorModifier = 77] = "multiCursorModifier", t[t.multiCursorPaste = 78] = "multiCursorPaste", t[t.multiCursorLimit = 79] = "multiCursorLimit", t[t.occurrencesHighlight = 80] = "occurrencesHighlight", t[t.overviewRulerBorder = 81] = "overviewRulerBorder", t[t.overviewRulerLanes = 82] = "overviewRulerLanes", t[t.padding = 83] = "padding", t[t.pasteAs = 84] = "pasteAs", t[t.parameterHints = 85] = "parameterHints", t[t.peekWidgetDefaultFocus = 86] = "peekWidgetDefaultFocus", t[t.definitionLinkOpensInPeek = 87] = "definitionLinkOpensInPeek", t[t.quickSuggestions = 88] = "quickSuggestions", t[t.quickSuggestionsDelay = 89] = "quickSuggestionsDelay", t[t.readOnly = 90] = "readOnly", t[t.readOnlyMessage = 91] = "readOnlyMessage", t[t.renameOnType = 92] = "renameOnType", t[t.renderControlCharacters = 93] = "renderControlCharacters", t[t.renderFinalNewline = 94] = "renderFinalNewline", t[t.renderLineHighlight = 95] = "renderLineHighlight", t[t.renderLineHighlightOnlyWhenFocus = 96] = "renderLineHighlightOnlyWhenFocus", t[t.renderValidationDecorations = 97] = "renderValidationDecorations", t[t.renderWhitespace = 98] = "renderWhitespace", t[t.revealHorizontalRightPadding = 99] = "revealHorizontalRightPadding", t[t.roundedSelection = 100] = "roundedSelection", t[t.rulers = 101] = "rulers", t[t.scrollbar = 102] = "scrollbar", t[t.scrollBeyondLastColumn = 103] = "scrollBeyondLastColumn", t[t.scrollBeyondLastLine = 104] = "scrollBeyondLastLine", t[t.scrollPredominantAxis = 105] = "scrollPredominantAxis", t[t.selectionClipboard = 106] = "selectionClipboard", t[t.selectionHighlight = 107] = "selectionHighlight", t[t.selectOnLineNumbers = 108] = "selectOnLineNumbers", t[t.showFoldingControls = 109] = "showFoldingControls", t[t.showUnused = 110] = "showUnused", t[t.snippetSuggestions = 111] = "snippetSuggestions", t[t.smartSelect = 112] = "smartSelect", t[t.smoothScrolling = 113] = "smoothScrolling", t[t.stickyScroll = 114] = "stickyScroll", t[t.stickyTabStops = 115] = "stickyTabStops", t[t.stopRenderingLineAfter = 116] = "stopRenderingLineAfter", t[t.suggest = 117] = "suggest", t[t.suggestFontSize = 118] = "suggestFontSize", t[t.suggestLineHeight = 119] = "suggestLineHeight", t[t.suggestOnTriggerCharacters = 120] = "suggestOnTriggerCharacters", t[t.suggestSelection = 121] = "suggestSelection", t[t.tabCompletion = 122] = "tabCompletion", t[t.tabIndex = 123] = "tabIndex", t[t.unicodeHighlighting = 124] = "unicodeHighlighting", t[t.unusualLineTerminators = 125] = "unusualLineTerminators", t[t.useShadowDOM = 126] = "useShadowDOM", t[t.useTabStops = 127] = "useTabStops", t[t.wordBreak = 128] = "wordBreak", t[t.wordSeparators = 129] = "wordSeparators", t[t.wordWrap = 130] = "wordWrap", t[t.wordWrapBreakAfterCharacters = 131] = "wordWrapBreakAfterCharacters", t[t.wordWrapBreakBeforeCharacters = 132] = "wordWrapBreakBeforeCharacters", t[t.wordWrapColumn = 133] = "wordWrapColumn", t[t.wordWrapOverride1 = 134] = "wordWrapOverride1", t[t.wordWrapOverride2 = 135] = "wordWrapOverride2", t[t.wrappingIndent = 136] = "wrappingIndent", t[t.wrappingStrategy = 137] = "wrappingStrategy", t[t.showDeprecated = 138] = "showDeprecated", t[t.inlayHints = 139] = "inlayHints", t[t.editorClassName = 140] = "editorClassName", t[t.pixelRatio = 141] = "pixelRatio", t[t.tabFocusMode = 142] = "tabFocusMode", t[t.layoutInfo = 143] = "layoutInfo", t[t.wrappingInfo = 144] = "wrappingInfo", t[t.defaultColorDecorators = 145] = "defaultColorDecorators", t[t.colorDecoratorsActivatedOn = 146] = "colorDecoratorsActivatedOn", t[t.inlineCompletionsAccessibilityVerbose = 147] = "inlineCompletionsAccessibilityVerbose"; })(Os || (Os = {})); var Us; (function(t) { t[t.TextDefined = 0] = "TextDefined", t[t.LF = 1] = "LF", t[t.CRLF = 2] = "CRLF"; })(Us || (Us = {})); var Vs; (function(t) { t[t.LF = 0] = "LF", t[t.CRLF = 1] = "CRLF"; })(Vs || (Vs = {})); var Bs; (function(t) { t[t.Left = 1] = "Left", t[t.Right = 2] = "Right"; })(Bs || (Bs = {})); var qs; (function(t) { t[t.None = 0] = "None", t[t.Indent = 1] = "Indent", t[t.IndentOutdent = 2] = "IndentOutdent", t[t.Outdent = 3] = "Outdent"; })(qs || (qs = {})); var js; (function(t) { t[t.Both = 0] = "Both", t[t.Right = 1] = "Right", t[t.Left = 2] = "Left", t[t.None = 3] = "None"; })(js || (js = {})); var $s; (function(t) { t[t.Type = 1] = "Type", t[t.Parameter = 2] = "Parameter"; })($s || ($s = {})); var Hs; (function(t) { t[t.Automatic = 0] = "Automatic", t[t.Explicit = 1] = "Explicit"; })(Hs || (Hs = {})); var li; (function(t) { t[t.DependsOnKbLayout = -1] = "DependsOnKbLayout", t[t.Unknown = 0] = "Unknown", t[t.Backspace = 1] = "Backspace", t[t.Tab = 2] = "Tab", t[t.Enter = 3] = "Enter", t[t.Shift = 4] = "Shift", t[t.Ctrl = 5] = "Ctrl", t[t.Alt = 6] = "Alt", t[t.PauseBreak = 7] = "PauseBreak", t[t.CapsLock = 8] = "CapsLock", t[t.Escape = 9] = "Escape", t[t.Space = 10] = "Space", t[t.PageUp = 11] = "PageUp", t[t.PageDown = 12] = "PageDown", t[t.End = 13] = "End", t[t.Home = 14] = "Home", t[t.LeftArrow = 15] = "LeftArrow", t[t.UpArrow = 16] = "UpArrow", t[t.RightArrow = 17] = "RightArrow", t[t.DownArrow = 18] = "DownArrow", t[t.Insert = 19] = "Insert", t[t.Delete = 20] = "Delete", t[t.Digit0 = 21] = "Digit0", t[t.Digit1 = 22] = "Digit1", t[t.Digit2 = 23] = "Digit2", t[t.Digit3 = 24] = "Digit3", t[t.Digit4 = 25] = "Digit4", t[t.Digit5 = 26] = "Digit5", t[t.Digit6 = 27] = "Digit6", t[t.Digit7 = 28] = "Digit7", t[t.Digit8 = 29] = "Digit8", t[t.Digit9 = 30] = "Digit9", t[t.KeyA = 31] = "KeyA", t[t.KeyB = 32] = "KeyB", t[t.KeyC = 33] = "KeyC", t[t.KeyD = 34] = "KeyD", t[t.KeyE = 35] = "KeyE", t[t.KeyF = 36] = "KeyF", t[t.KeyG = 37] = "KeyG", t[t.KeyH = 38] = "KeyH", t[t.KeyI = 39] = "KeyI", t[t.KeyJ = 40] = "KeyJ", t[t.KeyK = 41] = "KeyK", t[t.KeyL = 42] = "KeyL", t[t.KeyM = 43] = "KeyM", t[t.KeyN = 44] = "KeyN", t[t.KeyO = 45] = "KeyO", t[t.KeyP = 46] = "KeyP", t[t.KeyQ = 47] = "KeyQ", t[t.KeyR = 48] = "KeyR", t[t.KeyS = 49] = "KeyS", t[t.KeyT = 50] = "KeyT", t[t.KeyU = 51] = "KeyU", t[t.KeyV = 52] = "KeyV", t[t.KeyW = 53] = "KeyW", t[t.KeyX = 54] = "KeyX", t[t.KeyY = 55] = "KeyY", t[t.KeyZ = 56] = "KeyZ", t[t.Meta = 57] = "Meta", t[t.ContextMenu = 58] = "ContextMenu", t[t.F1 = 59] = "F1", t[t.F2 = 60] = "F2", t[t.F3 = 61] = "F3", t[t.F4 = 62] = "F4", t[t.F5 = 63] = "F5", t[t.F6 = 64] = "F6", t[t.F7 = 65] = "F7", t[t.F8 = 66] = "F8", t[t.F9 = 67] = "F9", t[t.F10 = 68] = "F10", t[t.F11 = 69] = "F11", t[t.F12 = 70] = "F12", t[t.F13 = 71] = "F13", t[t.F14 = 72] = "F14", t[t.F15 = 73] = "F15", t[t.F16 = 74] = "F16", t[t.F17 = 75] = "F17", t[t.F18 = 76] = "F18", t[t.F19 = 77] = "F19", t[t.F20 = 78] = "F20", t[t.F21 = 79] = "F21", t[t.F22 = 80] = "F22", t[t.F23 = 81] = "F23", t[t.F24 = 82] = "F24", t[t.NumLock = 83] = "NumLock", t[t.ScrollLock = 84] = "ScrollLock", t[t.Semicolon = 85] = "Semicolon", t[t.Equal = 86] = "Equal", t[t.Comma = 87] = "Comma", t[t.Minus = 88] = "Minus", t[t.Period = 89] = "Period", t[t.Slash = 90] = "Slash", t[t.Backquote = 91] = "Backquote", t[t.BracketLeft = 92] = "BracketLeft", t[t.Backslash = 93] = "Backslash", t[t.BracketRight = 94] = "BracketRight", t[t.Quote = 95] = "Quote", t[t.OEM_8 = 96] = "OEM_8", t[t.IntlBackslash = 97] = "IntlBackslash", t[t.Numpad0 = 98] = "Numpad0", t[t.Numpad1 = 99] = "Numpad1", t[t.Numpad2 = 100] = "Numpad2", t[t.Numpad3 = 101] = "Numpad3", t[t.Numpad4 = 102] = "Numpad4", t[t.Numpad5 = 103] = "Numpad5", t[t.Numpad6 = 104] = "Numpad6", t[t.Numpad7 = 105] = "Numpad7", t[t.Numpad8 = 106] = "Numpad8", t[t.Numpad9 = 107] = "Numpad9", t[t.NumpadMultiply = 108] = "NumpadMultiply", t[t.NumpadAdd = 109] = "NumpadAdd", t[t.NUMPAD_SEPARATOR = 110] = "NUMPAD_SEPARATOR", t[t.NumpadSubtract = 111] = "NumpadSubtract", t[t.NumpadDecimal = 112] = "NumpadDecimal", t[t.NumpadDivide = 113] = "NumpadDivide", t[t.KEY_IN_COMPOSITION = 114] = "KEY_IN_COMPOSITION", t[t.ABNT_C1 = 115] = "ABNT_C1", t[t.ABNT_C2 = 116] = "ABNT_C2", t[t.AudioVolumeMute = 117] = "AudioVolumeMute", t[t.AudioVolumeUp = 118] = "AudioVolumeUp", t[t.AudioVolumeDown = 119] = "AudioVolumeDown", t[t.BrowserSearch = 120] = "BrowserSearch", t[t.BrowserHome = 121] = "BrowserHome", t[t.BrowserBack = 122] = "BrowserBack", t[t.BrowserForward = 123] = "BrowserForward", t[t.MediaTrackNext = 124] = "MediaTrackNext", t[t.MediaTrackPrevious = 125] = "MediaTrackPrevious", t[t.MediaStop = 126] = "MediaStop", t[t.MediaPlayPause = 127] = "MediaPlayPause", t[t.LaunchMediaPlayer = 128] = "LaunchMediaPlayer", t[t.LaunchMail = 129] = "LaunchMail", t[t.LaunchApp2 = 130] = "LaunchApp2", t[t.Clear = 131] = "Clear", t[t.MAX_VALUE = 132] = "MAX_VALUE"; })(li || (li = {})); var ci; (function(t) { t[t.Hint = 1] = "Hint", t[t.Info = 2] = "Info", t[t.Warning = 4] = "Warning", t[t.Error = 8] = "Error"; })(ci || (ci = {})); var hi; (function(t) { t[t.Unnecessary = 1] = "Unnecessary", t[t.Deprecated = 2] = "Deprecated"; })(hi || (hi = {})); var Gs; (function(t) { t[t.Inline = 1] = "Inline", t[t.Gutter = 2] = "Gutter"; })(Gs || (Gs = {})); var Js; (function(t) { t[t.UNKNOWN = 0] = "UNKNOWN", t[t.TEXTAREA = 1] = "TEXTAREA", t[t.GUTTER_GLYPH_MARGIN = 2] = "GUTTER_GLYPH_MARGIN", t[t.GUTTER_LINE_NUMBERS = 3] = "GUTTER_LINE_NUMBERS", t[t.GUTTER_LINE_DECORATIONS = 4] = "GUTTER_LINE_DECORATIONS", t[t.GUTTER_VIEW_ZONE = 5] = "GUTTER_VIEW_ZONE", t[t.CONTENT_TEXT = 6] = "CONTENT_TEXT", t[t.CONTENT_EMPTY = 7] = "CONTENT_EMPTY", t[t.CONTENT_VIEW_ZONE = 8] = "CONTENT_VIEW_ZONE", t[t.CONTENT_WIDGET = 9] = "CONTENT_WIDGET", t[t.OVERVIEW_RULER = 10] = "OVERVIEW_RULER", t[t.SCROLLBAR = 11] = "SCROLLBAR", t[t.OVERLAY_WIDGET = 12] = "OVERLAY_WIDGET", t[t.OUTSIDE_EDITOR = 13] = "OUTSIDE_EDITOR"; })(Js || (Js = {})); var Xs; (function(t) { t[t.TOP_RIGHT_CORNER = 0] = "TOP_RIGHT_CORNER", t[t.BOTTOM_RIGHT_CORNER = 1] = "BOTTOM_RIGHT_CORNER", t[t.TOP_CENTER = 2] = "TOP_CENTER"; })(Xs || (Xs = {})); var Ys; (function(t) { t[t.Left = 1] = "Left", t[t.Center = 2] = "Center", t[t.Right = 4] = "Right", t[t.Full = 7] = "Full"; })(Ys || (Ys = {})); var Ks; (function(t) { t[t.Left = 0] = "Left", t[t.Right = 1] = "Right", t[t.None = 2] = "None", t[t.LeftOfInjectedText = 3] = "LeftOfInjectedText", t[t.RightOfInjectedText = 4] = "RightOfInjectedText"; })(Ks || (Ks = {})); var Qs; (function(t) { t[t.Off = 0] = "Off", t[t.On = 1] = "On", t[t.Relative = 2] = "Relative", t[t.Interval = 3] = "Interval", t[t.Custom = 4] = "Custom"; })(Qs || (Qs = {})); var Zs; (function(t) { t[t.None = 0] = "None", t[t.Text = 1] = "Text", t[t.Blocks = 2] = "Blocks"; })(Zs || (Zs = {})); var ea; (function(t) { t[t.Smooth = 0] = "Smooth", t[t.Immediate = 1] = "Immediate"; })(ea || (ea = {})); var ta; (function(t) { t[t.Auto = 1] = "Auto", t[t.Hidden = 2] = "Hidden", t[t.Visible = 3] = "Visible"; })(ta || (ta = {})); var di; (function(t) { t[t.LTR = 0] = "LTR", t[t.RTL = 1] = "RTL"; })(di || (di = {})); var na; (function(t) { t[t.Invoke = 1] = "Invoke", t[t.TriggerCharacter = 2] = "TriggerCharacter", t[t.ContentChange = 3] = "ContentChange"; })(na || (na = {})); var ra; (function(t) { t[t.File = 0] = "File", t[t.Module = 1] = "Module", t[t.Namespace = 2] = "Namespace", t[t.Package = 3] = "Package", t[t.Class = 4] = "Class", t[t.Method = 5] = "Method", t[t.Property = 6] = "Property", t[t.Field = 7] = "Field", t[t.Constructor = 8] = "Constructor", t[t.Enum = 9] = "Enum", t[t.Interface = 10] = "Interface", t[t.Function = 11] = "Function", t[t.Variable = 12] = "Variable", t[t.Constant = 13] = "Constant", t[t.String = 14] = "String", t[t.Number = 15] = "Number", t[t.Boolean = 16] = "Boolean", t[t.Array = 17] = "Array", t[t.Object = 18] = "Object", t[t.Key = 19] = "Key", t[t.Null = 20] = "Null", t[t.EnumMember = 21] = "EnumMember", t[t.Struct = 22] = "Struct", t[t.Event = 23] = "Event", t[t.Operator = 24] = "Operator", t[t.TypeParameter = 25] = "TypeParameter"; })(ra || (ra = {})); var ia; (function(t) { t[t.Deprecated = 1] = "Deprecated"; })(ia || (ia = {})); var sa; (function(t) { t[t.Hidden = 0] = "Hidden", t[t.Blink = 1] = "Blink", t[t.Smooth = 2] = "Smooth", t[t.Phase = 3] = "Phase", t[t.Expand = 4] = "Expand", t[t.Solid = 5] = "Solid"; })(sa || (sa = {})); var aa; (function(t) { t[t.Line = 1] = "Line", t[t.Block = 2] = "Block", t[t.Underline = 3] = "Underline", t[t.LineThin = 4] = "LineThin", t[t.BlockOutline = 5] = "BlockOutline", t[t.UnderlineThin = 6] = "UnderlineThin"; })(aa || (aa = {})); var oa; (function(t) { t[t.AlwaysGrowsWhenTypingAtEdges = 0] = "AlwaysGrowsWhenTypingAtEdges", t[t.NeverGrowsWhenTypingAtEdges = 1] = "NeverGrowsWhenTypingAtEdges", t[t.GrowsOnlyWhenTypingBefore = 2] = "GrowsOnlyWhenTypingBefore", t[t.GrowsOnlyWhenTypingAfter = 3] = "GrowsOnlyWhenTypingAfter"; })(oa || (oa = {})); var la; (function(t) { t[t.None = 0] = "None", t[t.Same = 1] = "Same", t[t.Indent = 2] = "Indent", t[t.DeepIndent = 3] = "DeepIndent"; })(la || (la = {})); class Pn { static chord(e, n) { return Dh(e, n); } } Pn.CtrlCmd = 2048; Pn.Shift = 1024; Pn.Alt = 512; Pn.WinCtrl = 256; function zh() { return { editor: void 0, // undefined override expected here languages: void 0, // undefined override expected here CancellationTokenSource: _h, Emitter: je, KeyCode: li, KeyMod: Pn, Position: Qe, Range: we, Selection: Me, SelectionDirection: di, MarkerSeverity: ci, MarkerTag: hi, Uri: Wi, Token: Mh }; } var ca; (function(t) { t[t.Left = 1] = "Left", t[t.Center = 2] = "Center", t[t.Right = 4] = "Right", t[t.Full = 7] = "Full"; })(ca || (ca = {})); var ha; (function(t) { t[t.Left = 1] = "Left", t[t.Right = 2] = "Right"; })(ha || (ha = {})); var da; (function(t) { t[t.Inline = 1] = "Inline", t[t.Gutter = 2] = "Gutter"; })(da || (da = {})); var ua; (function(t) { t[t.Both = 0] = "Both", t[t.Right = 1] = "Right", t[t.Left = 2] = "Left", t[t.None = 3] = "None"; })(ua || (ua = {})); function Lh(t, e, n, r, i) { if (r === 0) return !0; const s = e.charCodeAt(r - 1); if (t.get(s) !== 0 || s === 13 || s === 10) return !0; if (i > 0) { const a = e.charCodeAt(r); if (t.get(a) !== 0) return !0; } return !1; } function Ph(t, e, n, r, i) { if (r + i === n) return !0; const s = e.charCodeAt(r + i); if (t.get(s) !== 0 || s === 13 || s === 10) return !0; if (i > 0) { const a = e.charCodeAt(r + i - 1); if (t.get(a) !== 0) return !0; } return !1; } function Ih(t, e, n, r, i) { return Lh(t, e, n, r, i) && Ph(t, e, n, r, i); } class Th { constructor(e, n) { this._wordSeparators = e, this._searchRegex = n, this._prevMatchStartIndex = -1, this._prevMatchLength = 0; } reset(e) { this._searchRegex.lastIndex = e, this._prevMatchStartIndex = -1, this._prevMatchLength = 0; } next(e) { const n = e.length; let r; do { if (this._prevMatchStartIndex + this._prevMatchLength === n || (r = this._searchRegex.exec(e), !r)) return null; const i = r.index, s = r[0].length; if (i === this._prevMatchStartIndex && s === this._prevMatchLength) { if (s === 0) { Nc(e, n, this._searchRegex.lastIndex) > 65535 ? this._searchRegex.lastIndex += 2 : this._searchRegex.lastIndex += 1; continue; } return null; } if (this._prevMatchStartIndex = i, this._prevMatchLength = s, !this._wordSeparators || Ih(this._wordSeparators, e, n, i, s)) return r; } while (r); return null; } } function Wh(t, e = "Unreachable") { throw new Error(e); } function cr(t) { if (!t()) { debugger; t(), nl(new vt("Assertion Failed")); } } function bl(t, e) { let n = 0; for (; n < t.length - 1; ) { const r = t[n], i = t[n + 1]; if (!e(r, i)) return !1; n++; } return !0; } class Oh { static computeUnicodeHighlights(e, n, r) { const i = r ? r.startLineNumber : 1, s = r ? r.endLineNumber : e.getLineCount(), a = new pa(n), o = a.getCandidateCodePoints(); let l; o === "allNonBasicAscii" ? l = new RegExp("[^\\t\\n\\r\\x20-\\x7E]", "g") : l = new RegExp(`${Uh(Array.from(o))}`, "g"); const c = new Th(null, l), h = []; let u = !1, f, m = 0, g = 0, b = 0; e: for (let y = i, k = s; y <= k; y++) { const w = e.getLineContent(y), S = w.length; c.reset(0); do if (f = c.next(w), f) { let F = f.index, E = f.index + f[0].length; if (F > 0) { const H = w.charCodeAt(F - 1); ei(H) && F--; } if (E + 1 < S) { const H = w.charCodeAt(E - 1); ei(H) && E++; } const P = w.substring(F, E); let T = Oi(F + 1, fl, w, 0); T && T.endColumn <= F + 1 && (T = null); const W = a.shouldHighlightNonBasicASCII(P, T ? T.word : null); if (W !== 0) { W === 3 ? m++ : W === 2 ? g++ : W === 1 ? b++ : Wh(); const H = 1e3; if (h.length >= H) { u = !0; break e; } h.push(new we(y, F + 1, y, E + 1)); } } while (f); } return { ranges: h, hasMore: u, ambiguousCharacterCount: m, invisibleCharacterCount: g, nonBasicAsciiCharacterCount: b }; } static computeUnicodeHighlightReason(e, n) { const r = new pa(n); switch (r.shouldHighlightNonBasicASCII(e, null)) { case 0: return null; case 2: return { kind: 1 /* UnicodeHighlighterReasonKind.Invisible */ }; case 3: { const s = e.codePointAt(0), a = r.ambiguousCharacters.getPrimaryConfusable(s), o = Nt.getLocales().filter((l) => !Nt.getInstance(/* @__PURE__ */ new Set([...n.allowedLocales, l])).isAmbiguous(s)); return { kind: 0, confusableWith: String.fromCodePoint(a), notAmbiguousInLocales: o }; } case 1: return { kind: 2 /* UnicodeHighlighterReasonKind.NonBasicAscii */ }; } } } function Uh(t, e) { return `[${_c(t.map((r) => String.fromCodePoint(r)).join(""))}]`; } class pa { constructor(e) { this.options = e, this.allowedCodePoints = new Set(e.allowedCodePoints), this.ambiguousCharacters = Nt.getInstance(new Set(e.allowedLocales)); } getCandidateCodePoints() { if (this.options.nonBasicASCII) return "allNonBasicAscii"; const e = /* @__PURE__ */ new Set(); if (this.options.invisibleCharacters) for (const n of yt.codePoints) fa(String.fromCodePoint(n)) || e.add(n); if (this.options.ambiguousCharacters) for (const n of this.ambiguousCharacters.getConfusableCodePoints()) e.add(n); for (const n of this.allowedCodePoints) e.delete(n); return e; } shouldHighlightNonBasicASCII(e, n) { const r = e.codePointAt(0); if (this.allowedCodePoints.has(r)) return 0; if (this.options.nonBasicASCII) return 1; let i = !1, s = !1; if (n) for (const a of n) { const o = a.codePointAt(0), l = zc(a); i = i || l, !l && !this.ambiguousCharacters.isAmbiguous(o) && !yt.isInvisibleCharacter(o) && (s = !0); } return ( /* Don't allow mixing weird looking characters with ASCII */ !i && /* Is there an obviously weird looking character? */ s ? 0 : this.options.invisibleCharacters && !fa(e) && yt.isInvisibleCharacter(r) ? 2 : this.options.ambiguousCharacters && this.ambiguousCharacters.isAmbiguous(r) ? 3 : 0 ); } } function fa(t) { return t === " " || t === ` ` || t === " "; } class nr { constructor(e, n, r) { this.changes = e, this.moves = n, this.hitTimeout = r; } } class Vh { constructor(e, n) { this.lineRangeMapping = e, this.changes = n; } } class K { static addRange(e, n) { let r = 0; for (; r < n.length && n[r].endExclusive < e.start; ) r++; let i = r; for (; i < n.length && n[i].start <= e.endExclusive; ) i++; if (r === i) n.splice(r, 0, e); else { const s = Math.min(e.start, n[r].start), a = Math.max(e.endExclusive, n[i - 1].endExclusive); n.splice(r, i - r, new K(s, a)); } } static tryCreate(e, n) { if (!(e > n)) return new K(e, n); } static ofLength(e) { return new K(0, e); } constructor(e, n) { if (this.start = e, this.endExclusive = n, e > n) throw new vt(`Invalid range: ${this.toString()}`); } get isEmpty() { return this.start === this.endExclusive; } delta(e) { return new K(this.start + e, this.endExclusive + e); } deltaStart(e) { return new K(this.start + e, this.endExclusive); } deltaEnd(e) { return new K(this.start, this.endExclusive + e); } get length() { return this.endExclusive - this.start; } toString() { return `[${this.start}, ${this.endExclusive})`; } equals(e) { return this.start === e.start && this.endExclusive === e.endExclusive; } containsRange(e) { return this.start <= e.start && e.endExclusive <= this.endExclusive; } contains(e) { return this.start <= e && e < this.endExclusive; } /** * for all numbers n: range1.contains(n) or range2.contains(n) => range1.join(range2).contains(n) * The joined range is the smallest range that contains both ranges. */ join(e) { return new K(Math.min(this.start, e.start), Math.max(this.endExclusive, e.endExclusive)); } /** * for all numbers n: range1.contains(n) and range2.contains(n) <=> range1.intersect(range2).contains(n) * * The resulting range is empty if the ranges do not intersect, but touch. * If the ranges don't even touch, the result is undefined. */ intersect(e) { const n = Math.max(this.start, e.start), r = Math.min(this.endExclusive, e.endExclusive); if (n <= r) return new K(n, r); } slice(e) { return e.slice(this.start, this.endExclusive); } /** * Returns the given value if it is contained in this instance, otherwise the closest value that is contained. * The range must not be empty. */ clip(e) { if (this.isEmpty) throw new vt(`Invalid clipping range: ${this.toString()}`); return Math.max(this.start, Math.min(this.endExclusive - 1, e)); } /** * Returns `r := value + k * length` such that `r` is contained in this range. * The range must not be empty. * * E.g. `[5, 10).clipCyclic(10) === 5`, `[5, 10).clipCyclic(11) === 6` and `[5, 10).clipCyclic(4) === 9`. */ clipCyclic(e) { if (this.isEmpty) throw new vt(`Invalid clipping range: ${this.toString()}`); return e < this.start ? this.endExclusive - (this.start - e) % this.length : e >= this.endExclusive ? this.start + (e - this.start) % this.length : e; } forEach(e) { for (let n = this.start; n < this.endExclusive; n++) e(n); } } function Sn(t, e) { const n = Cn(t, e); return n === -1 ? void 0 : t[n]; } function Cn(t, e, n = 0, r = t.length) { let i = n, s = r; for (; i < s; ) { const a = Math.floor((i + s) / 2); e(t[a]) ? i = a + 1 : s = a; } return i - 1; } function Bh(t, e) { const n = ui(t, e); return n === t.length ? void 0 : t[n]; } function ui(t, e, n = 0, r = t.length) { let i = n, s = r; for (; i < s; ) { const a = Math.floor((i + s) / 2); e(t[a]) ? s = a : i = a + 1; } return i; } class In { constructor(e) { this._array = e, this._findLastMonotonousLastIdx = 0; } /** * The predicate must be monotonous, i.e. `arr.map(predicate)` must be like `[true, ..., true, false, ..., false]`! * For subsequent calls, current predicate must be weaker than (or equal to) the previous predicate, i.e. more entries must be `true`. */ findLastMonotonous(e) { if (In.assertInvariants) { if (this._prevFindLastPredicate) { for (const r of this._array) if (this._prevFindLastPredicate(r) && !e(r)) throw new Error("MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate."); } this._prevFindLastPredicate = e; } const n = Cn(this._array, e, this._findLastMonotonousLastIdx); return this._findLastMonotonousLastIdx = n + 1, n === -1 ? void 0 : this._array[n]; } } In.assertInvariants = !1; class ee { static fromRange(e) { return new ee(e.startLineNumber, e.endLineNumber); } /** * @param lineRanges An array of sorted line ranges. */ static joinMany(e) { if (e.length === 0) return []; let n = new Xe(e[0].slice()); for (let r = 1; r < e.length; r++) n = n.getUnion(new Xe(e[r].slice())); return n.ranges; } static ofLength(e, n) { return new ee(e, e + n); } /** * @internal */ static deserialize(e) { return new ee(e[0], e[1]); } constructor(e, n) { if (e > n) throw new vt(`startLineNumber ${e} cannot be after endLineNumberExclusive ${n}`); this.startLineNumber = e, this.endLineNumberExclusive = n; } /** * Indicates if this line range contains the given line number. */ contains(e) { return this.startLineNumber <= e && e < this.endLineNumberExclusive; } /** * Indicates if this line range is empty. */ get isEmpty() { return this.startLineNumber === this.endLineNumberExclusive; } /** * Moves this line range by the given offset of line numbers. */ delta(e) { return new ee(this.startLineNumber + e, this.endLineNumberExclusive + e); } deltaLength(e) { return new ee(this.startLineNumber, this.endLineNumberExclusive + e); } /** * The number of lines this line range spans. */ get length() { return this.endLineNumberExclusive - this.startLineNumber; } /** * Creates a line range that combines this and the given line range. */ join(e) { return new ee(Math.min(this.startLineNumber, e.startLineNumber), Math.max(this.endLineNumberExclusive, e.endLineNumberExclusive)); } toString() { return `[${this.startLineNumber},${this.endLineNumberExclusive})`; } /** * The resulting range is empty if the ranges do not intersect, but touch. * If the ranges don't even touch, the result is undefined. */ intersect(e) { const n = Math.max(this.startLineNumber, e.startLineNumber), r = Math.min(this.endLineNumberExclusive, e.endLineNumberExclusive); if (n <= r) return new ee(n, r); } intersectsStrict(e) { return this.startLineNumber < e.endLineNumberExclusive && e.startLineNumber < this.endLineNumberExclusive; } overlapOrTouch(e) { return this.startLineNumber <= e.endLineNumberExclusive && e.startLineNumber <= this.endLineNumberExclusive; } equals(e) { return this.startLineNumber === e.startLineNumber && this.endLineNumberExclusive === e.endLineNumberExclusive; } toInclusiveRange() { return this.isEmpty ? null : new we(this.startLineNumber, 1, this.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER); } toExclusiveRange() { return new we(this.startLineNumber, 1, this.endLineNumberExclusive, 1); } mapToLineArray(e) { const n = []; for (let r = this.startLineNumber; r < this.endLineNumberExclusive; r++) n.push(e(r)); return n; } forEach(e) { for (let n = this.startLineNumber; n < this.endLineNumberExclusive; n++) e(n); } /** * @internal */ serialize() { return [this.startLineNumber, this.endLineNumberExclusive]; } includes(e) { return this.startLineNumber <= e && e < this.endLineNumberExclusive; } /** * Converts this 1-based line range to a 0-based offset range (subtracts 1!). * @internal */ toOffsetRange() { return new K(this.startLineNumber - 1, this.endLineNumberExclusive - 1); } } class Xe { constructor(e = []) { this._normalizedRanges = e; } get ranges() { return this._normalizedRanges; } addRange(e) { if (e.length === 0) return; const n = ui(this._normalizedRanges, (i) => i.endLineNumberExclusive >= e.startLineNumber), r = Cn(this._normalizedRanges, (i) => i.startLineNumber <= e.endLineNumberExclusive) + 1; if (n === r) this._normalizedRanges.splice(n, 0, e); else if (n === r - 1) { const i = this._normalizedRanges[n]; this._normalizedRanges[n] = i.join(e); } else { const i = this._normalizedRanges[n].join(this._normalizedRanges[r - 1]).join(e); this._normalizedRanges.splice(n, r - n, i); } } contains(e) { const n = Sn(this._normalizedRanges, (r) => r.startLineNumber <= e); return !!n && n.endLineNumberExclusive > e; } getUnion(e) { if (this._normalizedRanges.length === 0) return e; if (e._normalizedRanges.length === 0) return this; const n = []; let r = 0, i = 0, s = null; for (; r < this._normalizedRanges.length || i < e._normalizedRanges.length; ) { let a = null; if (r < this._normalizedRanges.length && i < e._normalizedRanges.length) { const o = this._normalizedRanges[r], l = e._normalizedRanges[i]; o.startLineNumber < l.startLineNumber ? (a = o, r++) : (a = l, i++); } else r < this._normalizedRanges.length ? (a = this._normalizedRanges[r], r++) : (a = e._normalizedRanges[i], i++); s === null ? s = a : s.endLineNumberExclusive >= a.startLineNumber ? s = new ee(s.startLineNumber, Math.max(s.endLineNumberExclusive, a.endLineNumberExclusive)) : (n.push(s), s = a); } return s !== null && n.push(s), new Xe(n); } /** * Subtracts all ranges in this set from `range` and returns the result. */ subtractFrom(e) { const n = ui(this._normalizedRanges, (a) => a.endLineNumberExclusive >= e.startLineNumber), r = Cn(this._normalizedRanges, (a) => a.startLineNumber <= e.endLineNumberExclusive) + 1; if (n === r) return new Xe([e]); const i = []; let s = e.startLineNumber; for (let a = n; a < r; a++) { const o = this._normalizedRanges[a]; o.startLineNumber > s && i.push(new ee(s, o.startLineNumber)), s = o.endLineNumberExclusive; } return s < e.endLineNumberExclusive && i.push(new ee(s, e.endLineNumberExclusive)), new Xe(i); } toString() { return this._normalizedRanges.map((e) => e.toString()).join(", "); } getIntersection(e) { const n = []; let r = 0, i = 0; for (; r < this._normalizedRanges.length && i < e._normalizedRanges.length; ) { const s = this._normalizedRanges[r], a = e._normalizedRanges[i], o = s.intersect(a); o && !o.isEmpty && n.push(o), s.endLineNumberExclusive < a.endLineNumberExclusive ? r++ : i++; } return new Xe(n); } getWithDelta(e) { return new Xe(this._normalizedRanges.map((n) => n.delta(e))); } } class St { static inverse(e, n, r) { const i = []; let s = 1, a = 1; for (const l of e) { const c = new lt(new ee(s, l.original.startLineNumber), new ee(a, l.modified.startLineNumber), void 0); c.modified.isEmpty || i.push(c), s = l.original.endLineNumberExclusive, a = l.modified.endLineNumberExclusive; } const o = new lt(new ee(s, n + 1), new ee(a, r + 1), void 0); return o.modified.isEmpty || i.push(o), i; } constructor(e, n) { this.original = e, this.modified = n; } toString() { return `{${this.original.toString()}->${this.modified.toString()}}`; } flip() { return new St(this.modified, this.original); } join(e) { return new St(this.original.join(e.original), this.modified.join(e.modified)); } } class lt extends St { constructor(e, n, r) { super(e, n), this.innerChanges = r; } flip() { var e; return new lt(this.modified, this.original, (e = this.innerChanges) === null || e === void 0 ? void 0 : e.map((n) => n.flip())); } } class kn { constructor(e, n) { this.originalRange = e, this.modifiedRange = n; } toString() { return `{${this.originalRange.toString()}->${this.modifiedRange.toString()}}`; } flip() { return new kn(this.modifiedRange, this.originalRange); } } const qh = 3; class jh { computeDiff(e, n, r) { var i; const a = new Gh(e, n, { maxComputationTime: r.maxComputationTimeMs, shouldIgnoreTrimWhitespace: r.ignoreTrimWhitespace, shouldComputeCharChanges: !0, shouldMakePrettyDiff: !0, shouldPostProcessCharChanges: !0 }).computeDiff(), o = []; let l = null; for (const c of a.changes) { let h; c.originalEndLineNumber === 0 ? h = new ee(c.originalStartLineNumber + 1, c.originalStartLineNumber + 1) : h = new ee(c.originalStartLineNumber, c.originalEndLineNumber + 1); let u; c.modifiedEndLineNumber === 0 ? u = new ee(c.modifiedStartLineNumber + 1, c.modifiedStartLineNumber + 1) : u = new ee(c.modifiedStartLineNumber, c.modifiedEndLineNumber + 1); let f = new lt(h, u, (i = c.charChanges) === null || i === void 0 ? void 0 : i.map((m) => new kn(new we(m.originalStartLineNumber, m.originalStartColumn, m.originalEndLineNumber, m.originalEndColumn), new we(m.modifiedStartLineNumber, m.modifiedStartColumn, m.modifiedEndLineNumber, m.modifiedEndColumn)))); l && (l.modified.endLineNumberExclusive === f.modified.startLineNumber || l.original.endLineNumberExclusive === f.original.startLineNumber) && (f = new lt(l.original.join(f.original), l.modified.join(f.modified), l.innerChanges && f.innerChanges ? l.innerChanges.concat(f.innerChanges) : void 0), o.pop()), o.push(f), l = f; } return cr(() => bl(o, (c, h) => h.original.startLineNumber - c.original.endLineNumberExclusive === h.modified.startLineNumber - c.modified.endLineNumberExclusive && // There has to be an unchanged line in between (otherwise both diffs should have been joined) c.original.endLineNumberExclusive < h.original.startLineNumber && c.modified.endLineNumberExclusive < h.modified.startLineNumber)), new nr(o, [], a.quitEarly); } } function vl(t, e, n, r) { return new gt(t, e, n).ComputeDiff(r); } let ma = class { constructor(e) { const n = [], r = []; for (let i = 0, s = e.length; i < s; i++) n[i] = pi(e[i], 1), r[i] = fi(e[i], 1); this.lines = e, this._startColumns = n, this._endColumns = r; } getElements() { const e = []; for (let n = 0, r = this.lines.length; n < r; n++) e[n] = this.lines[n].substring(this._startColumns[n] - 1, this._endColumns[n] - 1); return e; } getStrictElement(e) { return this.lines[e]; } getStartLineNumber(e) { return e + 1; } getEndLineNumber(e) { return e + 1; } createCharSequence(e, n, r) { const i = [], s = [], a = []; let o = 0; for (let l = n; l <= r; l++) { const c = this.lines[l], h = e ? this._startColumns[l] : 1, u = e ? this._endColumns[l] : c.length + 1; for (let f = h; f < u; f++) i[o] = c.charCodeAt(f - 1), s[o] = l + 1, a[o] = f, o++; !e && l < r && (i[o] = 10, s[o] = l + 1, a[o] = c.length + 1, o++); } return new $h(i, s, a); } }; class $h { constructor(e, n, r) { this._charCodes = e, this._lineNumbers = n, this._columns = r; } toString() { return "[" + this._charCodes.map((e, n) => (e === 10 ? "\\n" : String.fromCharCode(e)) + `-(${this._lineNumbers[n]},${this._columns[n]})`).join(", ") + "]"; } _assertIndex(e, n) { if (e < 0 || e >= n.length) throw new Error("Illegal index"); } getElements() { return this._charCodes; } getStartLineNumber(e) { return e > 0 && e === this._lineNumbers.length ? this.getEndLineNumber(e - 1) : (this._assertIndex(e, this._lineNumbers), this._lineNumbers[e]); } getEndLineNumber(e) { return e === -1 ? this.getStartLineNumber(e + 1) : (this._assertIndex(e, this._lineNumbers), this._charCodes[e] === 10 ? this._lineNumbers[e] + 1 : this._lineNumbers[e]); } getStartColumn(e) { return e > 0 && e === this._columns.length ? this.getEndColumn(e - 1) : (this._assertIndex(e, this._columns), this._columns[e]); } getEndColumn(e) { return e === -1 ? this.getStartColumn(e + 1) : (this._assertIndex(e, this._columns), this._charCodes[e] === 10 ? 1 : this._columns[e] + 1); } } class jt { constructor(e, n, r, i, s, a, o, l) { this.originalStartLineNumber = e, this.originalStartColumn = n, this.originalEndLineNumber = r, this.originalEndColumn = i, this.modifiedStartLineNumber = s, this.modifiedStartColumn = a, this.modifiedEndLineNumber = o, this.modifiedEndColumn = l; } static createFromDiffChange(e, n, r) { const i = n.getStartLineNumber(e.originalStart), s = n.getStartColumn(e.originalStart), a = n.getEndLineNumber(e.originalStart + e.originalLength - 1), o = n.getEndColumn(e.originalStart + e.originalLength - 1), l = r.getStartLineNumber(e.modifiedStart), c = r.getStartColumn(e.modifiedStart), h = r.getEndLineNumber(e.modifiedStart + e.modifiedLength - 1), u = r.getEndColumn(e.modifiedStart + e.modifiedLength - 1); return new jt(i, s, a, o, l, c, h, u); } } function Hh(t) { if (t.length <= 1) return t; const e = [t[0]]; let n = e[0]; for (let r = 1, i = t.length; r < i; r++) { const s = t[r], a = s.originalStart - (n.originalStart + n.originalLength), o = s.modifiedStart - (n.modifiedStart + n.modifiedLength); Math.min(a, o) < qh ? (n.originalLength = s.originalStart + s.originalLength - n.originalStart, n.modifiedLength = s.modifiedStart + s.modifiedLength - n.modifiedStart) : (e.push(s), n = s); } return e; } class bn { constructor(e, n, r, i, s) { this.originalStartLineNumber = e, this.originalEndLineNumber = n, this.modifiedStartLineNumber = r, this.modifiedEndLineNumber = i, this.charChanges = s; } static createFromDiffResult(e, n, r, i, s, a, o) { let l, c, h, u, f; if (n.originalLength === 0 ? (l = r.getStartLineNumber(n.originalStart) - 1, c = 0) : (l = r.getStartLineNumber(n.originalStart), c = r.getEndLineNumber(n.originalStart + n.originalLength - 1)), n.modifiedLength === 0 ? (h = i.getStartLineNumber(n.modifiedStart) - 1, u = 0) : (h = i.getStartLineNumber(n.modifiedStart), u = i.getEndLineNumber(n.modifiedStart + n.modifiedLength - 1)), a && n.originalLength > 0 && n.originalLength < 20 && n.modifiedLength > 0 && n.modifiedLength < 20 && s()) { const m = r.createCharSequence(e, n.originalStart, n.originalStart + n.originalLength - 1), g = i.createCharSequence(e, n.modifiedStart, n.modifiedStart + n.modifiedLength - 1); if (m.getElements().length > 0 && g.getElements().length > 0) { let b = vl(m, g, s, !0).changes; o && (b = Hh(b)), f = []; for (let y = 0, k = b.length; y < k; y++) f.push(jt.createFromDiffChange(b[y], m, g)); } } return new bn(l, c, h, u, f); } } class Gh { constructor(e, n, r) { this.shouldComputeCharChanges = r.shouldComputeCharChanges, this.shouldPostProcessCharChanges = r.shouldPostProcessCharChanges, this.shouldIgnoreTrimWhitespace = r.shouldIgnoreTrimWhitespace, this.shouldMakePrettyDiff = r.shouldMakePrettyDiff, this.originalLines = e, this.modifiedLines = n, this.original = new ma(e), this.modified = new ma(n), this.continueLineDiff = ga(r.maxComputationTime), this.continueCharDiff = ga(r.maxComputationTime === 0 ? 0 : Math.min(r.maxComputationTime, 5e3)); } computeDiff() { if (this.original.lines.length === 1 && this.original.lines[0].length === 0) return this.modified.lines.length === 1 && this.modified.lines[0].length === 0 ? { quitEarly: !1, changes: [] } : { quitEarly: !1, changes: [{ originalStartLineNumber: 1, originalEndLineNumber: 1, modifiedStartLineNumber: 1, modifiedEndLineNumber: this.modified.lines.length, charChanges: void 0 }] }; if (this.modified.lines.length === 1 && this.modified.lines[0].length === 0) return { quitEarly: !1, changes: [{ originalStartLineNumber: 1, originalEndLineNumber: this.original.lines.length, modifiedStartLineNumber: 1, modifiedEndLineNumber: 1, charChanges: void 0 }] }; const e = vl(this.original, this.modified, this.continueLineDiff, this.shouldMakePrettyDiff), n = e.changes, r = e.quitEarly; if (this.shouldIgnoreTrimWhitespace) { const o = []; for (let l = 0, c = n.length; l < c; l++) o.push(bn.createFromDiffResult(this.shouldIgnoreTrimWhitespace, n[l], this.original, this.modified, this.continueCharDiff, this.shouldComputeCharChanges, this.shouldPostProcessCharChanges)); return { quitEarly: r, changes: o }; } const i = []; let s = 0, a = 0; for (let o = -1, l = n.length; o < l; o++) { const c = o + 1 < l ? n[o + 1] : null, h = c ? c.originalStart : this.originalLines.length, u = c ? c.modifiedStart : this.modifiedLines.length; for (; s < h && a < u; ) { const f = this.originalLines[s], m = this.modifiedLines[a]; if (f !== m) { { let g = pi(f, 1), b = pi(m, 1); for (; g > 1 && b > 1; ) { const y = f.charCodeAt(g - 2), k = m.charCodeAt(b - 2); if (y !== k) break; g--, b--; } (g > 1 || b > 1) && this._pushTrimWhitespaceCharChange(i, s + 1, 1, g, a + 1, 1, b); } { let g = fi(f, 1), b = fi(m, 1); const y = f.length + 1, k = m.length + 1; for (; g < y && b < k; ) { const w = f.charCodeAt(g - 1), S = f.charCodeAt(b - 1); if (w !== S) break; g++, b++; } (g < y || b < k) && this._pushTrimWhitespaceCharChange(i, s + 1, g, y, a + 1, b, k); } } s++, a++; } c && (i.push(bn.createFromDiffResult(this.shouldIgnoreTrimWhitespace, c, this.original, this.modified, this.continueCharDiff, this.shouldComputeCharChanges, this.shouldPostProcessCharChanges)), s += c.originalLength, a += c.modifiedLength); } return { quitEarly: r, changes: i }; } _pushTrimWhitespaceCharChange(e, n, r, i, s, a, o) { if (this._mergeTrimWhitespaceCharChange(e, n, r, i, s, a, o)) return; let l; this.shouldComputeCharChanges && (l = [new jt(n, r, n, i, s, a, s, o)]), e.push(new bn(n, n, s, s, l)); } _mergeTrimWhitespaceCharChange(e, n, r, i, s, a, o) { const l = e.length; if (l === 0) return !1; const c = e[l - 1]; return c.originalEndLineNumber === 0 || c.modifiedEndLineNumber === 0 ? !1 : c.originalEndLineNumber === n && c.modifiedEndLineNumber === s ? (this.shouldComputeCharChanges && c.charChanges && c.charChanges.push(new jt(n, r, n, i, s, a, s, o)), !0) : c.originalEndLineNumber + 1 === n && c.modifiedEndLineNumber + 1 === s ? (c.originalEndLineNumber = n, c.modifiedEndLineNumber = s, this.shouldComputeCharChanges && c.charChanges && c.charChanges.push(new jt(n, r, n, i, s, a, s, o)), !0) : !1; } } function pi(t, e) { const n = Fc(t); return n === -1 ? e : n + 1; } function fi(t, e) { const n = Ec(t); return n === -1 ? e : n + 2; } function ga(t) { if (t === 0) return () => !0; const e = Date.now(); return () => Date.now() - e < t; } class ot { static trivial(e, n) { return new ot([new fe(K.ofLength(e.length), K.ofLength(n.length))], !1); } static trivialTimedOut(e, n) { return new ot([new fe(K.ofLength(e.length), K.ofLength(n.length))], !0); } constructor(e, n) { this.diffs = e, this.hitTimeout = n; } } class fe { static invert(e, n) { const r = []; return ch(e, (i, s) => { r.push(fe.fromOffsetPairs(i ? i.getEndExclusives() : Ye.zero, s ? s.getStarts() : new Ye(n, (i ? i.seq2Range.endExclusive - i.seq1Range.endExclusive : 0) + n))); }), r; } static fromOffsetPairs(e, n) { return new fe(new K(e.offset1, n.offset1), new K(e.offset2, n.offset2)); } constructor(e, n) { this.seq1Range = e, this.seq2Range = n; } swap() { return new fe(this.seq2Range, this.seq1Range); } toString() { return `${this.seq1Range} <-> ${this.seq2Range}`; } join(e) { return new fe(this.seq1Range.join(e.seq1Range), this.seq2Range.join(e.seq2Range)); } delta(e) { return e === 0 ? this : new fe(this.seq1Range.delta(e), this.seq2Range.delta(e)); } deltaStart(e) { return e === 0 ? this : new fe(this.seq1Range.deltaStart(e), this.seq2Range.deltaStart(e)); } deltaEnd(e) { return e === 0 ? this : new fe(this.seq1Range.deltaEnd(e), this.seq2Range.deltaEnd(e)); } intersect(e) { const n = this.seq1Range.intersect(e.seq1Range), r = this.seq2Range.intersect(e.seq2Range); if (!(!n || !r)) return new fe(n, r); } getStarts() { return new Ye(this.seq1Range.start, this.seq2Range.start); } getEndExclusives() { return new Ye(this.seq1Range.endExclusive, this.seq2Range.endExclusive); } } class Ye { constructor(e, n) { this.offset1 = e, this.offset2 = n; } toString() { return `${this.offset1} <-> ${this.offset2}`; } } Ye.zero = new Ye(0, 0); Ye.max = new Ye(Number.MAX_SAFE_INTEGER, Number.MAX_SAFE_INTEGER); class _n { isValid() { return !0; } } _n.instance = new _n(); class Jh { constructor(e) { if (this.timeout = e, this.startTime = Date.now(), this.valid = !0, e <= 0) throw new vt("timeout must be positive"); } // Recommendation: Set a log-point `{this.disable()}` in the body isValid() { if (!(Date.now() - this.startTime < this.timeout) && this.valid) { this.valid = !1; debugger; } return this.valid; } } class zr { constructor(e, n) { this.width = e, this.height = n, this.array = [], this.array = new Array(e * n); } get(e, n) { return this.array[e + n * this.width]; } set(e, n, r) { this.array[e + n * this.width] = r; } } function mi(t) { return t === 32 || t === 9; } class Kt { static getKey(e) { let n = this.chrKeys.get(e); return n === void 0 && (n = this.chrKeys.size, this.chrKeys.set(e, n)), n; } constructor(e, n, r) { this.range = e, this.lines = n, this.source = r, this.histogram = []; let i = 0; for (let s = e.startLineNumber - 1; s < e.endLineNumberExclusive - 1; s++) { const a = n[s]; for (let l = 0; l < a.length; l++) { i++; const c = a[l], h = Kt.getKey(c); this.histogram[h] = (this.histogram[h] || 0) + 1; } i++; const o = Kt.getKey(` `); this.histogram[o] = (this.histogram[o] || 0) + 1; } this.totalCount = i; } computeSimilarity(e) { var n, r; let i = 0; const s = Math.max(this.histogram.length, e.histogram.length); for (let a = 0; a < s; a++) i += Math.abs(((n = this.histogram[a]) !== null && n !== void 0 ? n : 0) - ((r = e.histogram[a]) !== null && r !== void 0 ? r : 0)); return 1 - i / (this.totalCount + e.totalCount); } } Kt.chrKeys = /* @__PURE__ */ new Map(); class Xh { compute(e, n, r = _n.instance, i) { if (e.length === 0 || n.length === 0) return ot.trivial(e, n); const s = new zr(e.length, n.length), a = new zr(e.length, n.length), o = new zr(e.length, n.length); for (let g = 0; g < e.length; g++) for (let b = 0; b < n.length; b++) { if (!r.isValid()) return ot.trivialTimedOut(e, n); const y = g === 0 ? 0 : s.get(g - 1, b), k = b === 0 ? 0 : s.get(g, b - 1); let w; e.getElement(g) === n.getElement(b) ? (g === 0 || b === 0 ? w = 0 : w = s.get(g - 1, b - 1), g > 0 && b > 0 && a.get(g - 1, b - 1) === 3 && (w += o.get(g - 1, b - 1)), w += i ? i(g, b) : 1) : w = -1; const S = Math.max(y, k, w); if (S === w) { const F = g > 0 && b > 0 ? o.get(g - 1, b - 1) : 0; o.set(g, b, F + 1), a.set(g, b, 3); } else S === y ? (o.set(g, b, 0), a.set(g, b, 1)) : S === k && (o.set(g, b, 0), a.set(g, b, 2)); s.set(g, b, S); } const l = []; let c = e.length, h = n.length; function u(g, b) { (g + 1 !== c || b + 1 !== h) && l.push(new fe(new K(g + 1, c), new K(b + 1, h))), c = g, h = b; } let f = e.length - 1, m = n.length - 1; for (; f >= 0 && m >= 0; ) a.get(f, m) === 3 ? (u(f, m), f--, m--) : a.get(f, m) === 1 ? f-- : m--; return u(-1, -1), l.reverse(), new ot(l, !1); } } class yl { compute(e, n, r = _n.instance) { if (e.length === 0 || n.length === 0) return ot.trivial(e, n); const i = e, s = n; function a(b, y) { for (; b < i.length && y < s.length && i.getElement(b) === s.getElement(y); ) b++, y++; return b; } let o = 0; const l = new Yh(); l.set(0, a(0, 0)); const c = new Kh(); c.set(0, l.get(0) === 0 ? null : new ba(null, 0, 0, l.get(0))); let h = 0; e: for (; ; ) { if (o++, !r.isValid()) return ot.trivialTimedOut(i, s); const b = -Math.min(o, s.length + o % 2), y = Math.min(o, i.length + o % 2); for (h = b; h <= y; h += 2) { const k = h === y ? -1 : l.get(h + 1), w = h === b ? -1 : l.get(h - 1) + 1, S = Math.min(Math.max(k, w), i.length), F = S - h; if (S > i.length || F > s.length) continue; const E = a(S, F); l.set(h, E); const P = S === k ? c.get(h + 1) : c.get(h - 1); if (c.set(h, E !== S ? new ba(P, S, F, E - S) : P), l.get(h) === i.length && l.get(h) - h === s.length) break e; } } let u = c.get(h); const f = []; let m = i.length, g = s.length; for (; ; ) { const b = u ? u.x + u.length : 0, y = u ? u.y + u.length : 0; if ((b !== m || y !== g) && f.push(new fe(new K(b, m), new K(y, g))), !u) break; m = u.x, g = u.y, u = u.prev; } return f.reverse(), new ot(f, !1); } } class ba { constructor(e, n, r, i) { this.prev = e, this.x = n, this.y = r, this.length = i; } } class Yh { constructor() { this.positiveArr = new Int32Array(10), this.negativeArr = new Int32Array(10); } get(e) { return e < 0 ? (e = -e - 1, this.negativeArr[e]) : this.positiveArr[e]; } set(e, n) { if (e < 0) { if (e = -e - 1, e >= this.negativeArr.length) { const r = this.negativeArr; this.negativeArr = new Int32Array(r.length * 2), this.negativeArr.set(r); } this.negativeArr[e] = n; } else { if (e >= this.positiveArr.length) { const r = this.positiveArr; this.positiveArr = new Int32Array(r.length * 2), this.positiveArr.set(r); } this.positiveArr[e] = n; } } } class Kh { constructor() { this.positiveArr = [], this.negativeArr = []; } get(e) { return e < 0 ? (e = -e - 1, this.negativeArr[e]) : this.positiveArr[e]; } set(e, n) { e < 0 ? (e = -e - 1, this.negativeArr[e] = n) : this.positiveArr[e] = n; } } class Qh { constructor() { this.map = /* @__PURE__ */ new Map(); } add(e, n) { let r = this.map.get(e); r || (r = /* @__PURE__ */ new Set(), this.map.set(e, r)), r.add(n); } delete(e, n) { const r = this.map.get(e); r && (r.delete(n), r.size === 0 && this.map.delete(e)); } forEach(e, n) { const r = this.map.get(e); r && r.forEach(n); } get(e) { const n = this.map.get(e); return n || /* @__PURE__ */ new Set(); } } class hr { constructor(e, n, r) { this.lines = e, this.considerWhitespaceChanges = r, this.elements = [], this.firstCharOffsetByLine = [], this.additionalOffsetByLine = []; let i = !1; n.start > 0 && n.endExclusive >= e.length && (n = new K(n.start - 1, n.endExclusive), i = !0), this.lineRange = n, this.firstCharOffsetByLine[0] = 0; for (let s = this.lineRange.start; s < this.lineRange.endExclusive; s++) { let a = e[s], o = 0; if (i) o = a.length, a = "", i = !1; else if (!r) { const l = a.trimStart(); o = a.length - l.length, a = l.trimEnd(); } this.additionalOffsetByLine.push(o); for (let l = 0; l < a.length; l++) this.elements.push(a.charCodeAt(l)); s < e.length - 1 && (this.elements.push(` `.charCodeAt(0)), this.firstCharOffsetByLine[s - this.lineRange.start + 1] = this.elements.length); } this.additionalOffsetByLine.push(0); } toString() { return `Slice: "${this.text}"`; } get text() { return this.getText(new K(0, this.length)); } getText(e) { return this.elements.slice(e.start, e.endExclusive).map((n) => String.fromCharCode(n)).join(""); } getElement(e) { return this.elements[e]; } get length() { return this.elements.length; } getBoundaryScore(e) { const n = ya(e > 0 ? this.elements[e - 1] : -1), r = ya(e < this.elements.length ? this.elements[e] : -1); if (n === 6 && r === 7) return 0; let i = 0; return n !== r && (i += 10, n === 0 && r === 1 && (i += 1)), i += va(n), i += va(r), i; } translateOffset(e) { if (this.lineRange.isEmpty) return new Qe(this.lineRange.start + 1, 1); const n = Cn(this.firstCharOffsetByLine, (r) => r <= e); return new Qe(this.lineRange.start + n + 1, e - this.firstCharOffsetByLine[n] + this.additionalOffsetByLine[n] + 1); } translateRange(e) { return we.fromPositions(this.translateOffset(e.start), this.translateOffset(e.endExclusive)); } /** * Finds the word that contains the character at the given offset */ findWordContaining(e) { if (e < 0 || e >= this.elements.length || !Lr(this.elements[e])) return; let n = e; for (; n > 0 && Lr(this.elements[n - 1]); ) n--; let r = e; for (; r < this.elements.length && Lr(this.elements[r]); ) r++; return new K(n, r); } countLinesIn(e) { return this.translateOffset(e.endExclusive).lineNumber - this.translateOffset(e.start).lineNumber; } isStronglyEqual(e, n) { return this.elements[e] === this.elements[n]; } extendToFullLines(e) { var n, r; const i = (n = Sn(this.firstCharOffsetByLine, (a) => a <= e.start)) !== null && n !== void 0 ? n : 0, s = (r = Bh(this.firstCharOffsetByLine, (a) => e.endExclusive <= a)) !== null && r !== void 0 ? r : this.elements.length; return new K(i, s); } } function Lr(t) { return t >= 97 && t <= 122 || t >= 65 && t <= 90 || t >= 48 && t <= 57; } const Zh = { 0: 0, 1: 0, 2: 0, 3: 10, 4: 2, 5: 3, 6: 10, 7: 10 }; function va(t) { return Zh[t]; } function ya(t) { return t === 10 ? 7 : t === 13 ? 6 : mi(t) ? 5 : t >= 97 && t <= 122 ? 0 : t >= 65 && t <= 90 ? 1 : t >= 48 && t <= 57 ? 2 : t === -1 ? 3 : 4; } function ed(t, e, n, r, i, s) { let { moves: a, excludedChanges: o } = td(t, e, n, s); if (!s.isValid()) return []; const l = t.filter((h) => !o.has(h)), c = nd(l, r, i, e, n, s); return dh(a, c), a = rd(a), a = a.filter((h) => h.original.toOffsetRange().slice(e).map((f) => f.trim()).join(` `).length >= 10), a = id(t, a), a; } function td(t, e, n, r) { const i = [], s = t.filter((l) => l.modified.isEmpty && l.original.length >= 3).map((l) => new Kt(l.original, e, l)), a = new Set(t.filter((l) => l.original.isEmpty && l.modified.length >= 3).map((l) => new Kt(l.modified, n, l))), o = /* @__PURE__ */ new Set(); for (const l of s) { let c = -1, h; for (const u of a) { const f = l.computeSimilarity(u); f > c && (c = f, h = u); } if (c > 0.9 && h && (a.delete(h), i.push(new St(l.range, h.range)), o.add(l.source), o.add(h.source)), !r.isValid()) return { moves: i, excludedChanges: o }; } return { moves: i, excludedChanges: o }; } function nd(t, e, n, r, i, s) { const a = [], o = new Qh(); for (const f of t) for (let m = f.original.startLineNumber; m < f.original.endLineNumberExclusive - 2; m++) { const g = `${e[m - 1]}:${e[m + 1 - 1]}:${e[m + 2 - 1]}`; o.add(g, { range: new ee(m, m + 3) }); } const l = []; t.sort(Qn((f) => f.modified.startLineNumber, Zn)); for (const f of t) { let m = []; for (let g = f.modified.startLineNumber; g < f.modified.endLineNumberExclusive - 2; g++) { const b = `${n[g - 1]}:${n[g + 1 - 1]}:${n[g + 2 - 1]}`, y = new ee(g, g + 3), k = []; o.forEach(b, ({ range: w }) => { for (const F of m) if (F.originalLineRange.endLineNumberExclusive + 1 === w.endLineNumberExclusive && F.modifiedLineRange.endLineNumberExclusive + 1 === y.endLineNumberExclusive) { F.originalLineRange = new ee(F.originalLineRange.startLineNumber, w.endLineNumberExclusive), F.modifiedLineRange = new ee(F.modifiedLineRange.startLineNumber, y.endLineNumberExclusive), k.push(F); return; } const S = { modifiedLineRange: y, originalLineRange: w }; l.push(S), k.push(S); }), m = k; } if (!s.isValid()) return []; } l.sort(uh(Qn((f) => f.modifiedLineRange.length, Zn))); const c = new Xe(), h = new Xe(); for (const f of l) { const m = f.modifiedLineRange.startLineNumber - f.originalLineRange.startLineNumber, g = c.subtractFrom(f.modifiedLineRange), b = h.subtractFrom(f.originalLineRange).getWithDelta(m), y = g.getIntersection(b); for (const k of y.ranges) { if (k.length < 3) continue; const w = k, S = k.delta(-m); a.push(new St(S, w)), c.addRange(w), h.addRange(S); } } a.sort(Qn((f) => f.original.startLineNumber, Zn)); const u = new In(t); for (let f = 0; f < a.length; f++) { const m = a[f], g = u.findLastMonotonous((P) => P.original.startLineNumber <= m.original.startLineNumber), b = Sn(t, (P) => P.modified.startLineNumber <= m.modified.startLineNumber), y = Math.max(m.original.startLineNumber - g.original.startLineNumber, m.modified.startLineNumber - b.modified.startLineNumber), k = u.findLastMonotonous((P) => P.original.startLineNumber < m.original.endLineNumberExclusive), w = Sn(t, (P) => P.modified.startLineNumber < m.modified.endLineNumberExclusive), S = Math.max(k.original.endLineNumberExclusive - m.original.endLineNumberExclusive, w.modified.endLineNumberExclusive - m.modified.endLineNumberExclusive); let F; for (F = 0; F < y; F++) { const P = m.original.startLineNumber - F - 1, T = m.modified.startLineNumber - F - 1; if (P > r.length || T > i.length || c.contains(T) || h.contains(P) || !wa(r[P - 1], i[T - 1], s)) break; } F > 0 && (h.addRange(new ee(m.original.startLineNumber - F, m.original.startLineNumber)), c.addRange(new ee(m.modified.startLineNumber - F, m.modified.startLineNumber))); let E; for (E = 0; E < S; E++) { const P = m.original.endLineNumberExclusive + E, T = m.modified.endLineNumberExclusive + E; if (P > r.length || T > i.length || c.contains(T) || h.contains(P) || !wa(r[P - 1], i[T - 1], s)) break; } E > 0 && (h.addRange(new ee(m.original.endLineNumberExclusive, m.original.endLineNumberExclusive + E)), c.addRange(new ee(m.modified.endLineNumberExclusive, m.modified.endLineNumberExclusive + E))), (F > 0 || E > 0) && (a[f] = new St(new ee(m.original.startLineNumber - F, m.original.endLineNumberExclusive + E), new ee(m.modified.startLineNumber - F, m.modified.endLineNumberExclusive + E))); } return a; } function wa(t, e, n) { if (t.trim() === e.trim()) return !0; if (t.length > 300 && e.length > 300) return !1; const i = new yl().compute(new hr([t], new K(0, 1), !1), new hr([e], new K(0, 1), !1), n); let s = 0; const a = fe.invert(i.diffs, t.length); for (const h of a) h.seq1Range.forEach((u) => { mi(t.charCodeAt(u)) || s++; }); function o(h) { let u = 0; for (let f = 0; f < t.length; f++) mi(h.charCodeAt(f)) || u++; return u; } const l = o(t.length > e.length ? t : e); return s / l > 0.6 && l > 10; } function rd(t) { if (t.length === 0) return t; t.sort(Qn((n) => n.original.startLineNumber, Zn)); const e = [t[0]]; for (let n = 1; n < t.length; n++) { const r = e[e.length - 1], i = t[n], s = i.original.startLineNumber - r.original.endLineNumberExclusive, a = i.modified.startLineNumber - r.modified.endLineNumberExclusive; if (s >= 0 && a >= 0 && s + a <= 2) { e[e.length - 1] = r.join(i); continue; } e.push(i); } return e; } function id(t, e) { const n = new In(t); return e = e.filter((r) => { const i = n.findLastMonotonous((o) => o.original.endLineNumberExclusive < r.original.endLineNumberExclusive) || new St(new ee(1, 1), new ee(1, 1)), s = Sn(t, (o) => o.modified.endLineNumberExclusive < r.modified.endLineNumberExclusive); return i !== s; }), e; } function xa(t, e, n) { let r = n; return r = sd(t, e, r), r = ad(t, e, r), r; } function sd(t, e, n) { if (n.length === 0) return n; const r = []; r.push(n[0]); for (let s = 1; s < n.length; s++) { const a = r[r.length - 1]; let o = n[s]; if (o.seq1Range.isEmpty || o.seq2Range.isEmpty) { const l = o.seq1Range.start - a.seq1Range.endExclusive; let c; for (c = 1; c <= l && !(t.getElement(o.seq1Range.start - c) !== t.getElement(o.seq1Range.endExclusive - c) || e.getElement(o.seq2Range.start - c) !== e.getElement(o.seq2Range.endExclusive - c)); c++) ; if (c--, c === l) { r[r.length - 1] = new fe(new K(a.seq1Range.start, o.seq1Range.endExclusive - l), new K(a.seq2Range.start, o.seq2Range.endExclusive - l)); continue; } o = o.delta(-c); } r.push(o); } const i = []; for (let s = 0; s < r.length - 1; s++) { const a = r[s + 1]; let o = r[s]; if (o.seq1Range.isEmpty || o.seq2Range.isEmpty) { const l = a.seq1Range.start - o.seq1Range.endExclusive; let c; for (c = 0; c < l && !(!t.isStronglyEqual(o.seq1Range.start + c, o.seq1Range.endExclusive + c) || !e.isStronglyEqual(o.seq2Range.start + c, o.seq2Range.endExclusive + c)); c++) ; if (c === l) { r[s + 1] = new fe(new K(o.seq1Range.start + l, a.seq1Range.endExclusive), new K(o.seq2Range.start + l, a.seq2Range.endExclusive)); continue; } c > 0 && (o = o.delta(c)); } i.push(o); } return r.length > 0 && i.push(r[r.length - 1]), i; } function ad(t, e, n) { if (!t.getBoundaryScore || !e.getBoundaryScore) return n; for (let r = 0; r < n.length; r++) { const i = r > 0 ? n[r - 1] : void 0, s = n[r], a = r + 1 < n.length ? n[r + 1] : void 0, o = new K(i ? i.seq1Range.start + 1 : 0, a ? a.seq1Range.endExclusive - 1 : t.length), l = new K(i ? i.seq2Range.start + 1 : 0, a ? a.seq2Range.endExclusive - 1 : e.length); s.seq1Range.isEmpty ? n[r] = Sa(s, t, e, o, l) : s.seq2Range.isEmpty && (n[r] = Sa(s.swap(), e, t, l, o).swap()); } return n; } function Sa(t, e, n, r, i) { let a = 1; for (; t.seq1Range.start - a >= r.start && t.seq2Range.start - a >= i.start && n.isStronglyEqual(t.seq2Range.start - a, t.seq2Range.endExclusive - a) && a < 100; ) a++; a--; let o = 0; for (; t.seq1Range.start + o < r.endExclusive && t.seq2Range.endExclusive + o < i.endExclusive && n.isStronglyEqual(t.seq2Range.start + o, t.seq2Range.endExclusive + o) && o < 100; ) o++; if (a === 0 && o === 0) return t; let l = 0, c = -1; for (let h = -a; h <= o; h++) { const u = t.seq2Range.start + h, f = t.seq2Range.endExclusive + h, m = t.seq1Range.start + h, g = e.getBoundaryScore(m) + n.getBoundaryScore(u) + n.getBoundaryScore(f); g > c && (c = g, l = h); } return t.delta(l); } function od(t, e, n) { const r = []; for (const i of n) { const s = r[r.length - 1]; if (!s) { r.push(i); continue; } i.seq1Range.start - s.seq1Range.endExclusive <= 2 || i.seq2Range.start - s.seq2Range.endExclusive <= 2 ? r[r.length - 1] = new fe(s.seq1Range.join(i.seq1Range), s.seq2Range.join(i.seq2Range)) : r.push(i); } return r; } function ld(t, e, n) { const r = []; let i; function s() { if (!i) return; const l = i.s1Range.length - i.deleted; i.s2Range.length - i.added, Math.max(i.deleted, i.added) + (i.count - 1) > l && r.push(new fe(i.s1Range, i.s2Range)), i = void 0; } for (const l of n) { let c = function(g, b) { var y, k, w, S; if (!i || !i.s1Range.containsRange(g) || !i.s2Range.containsRange(b)) if (i && !(i.s1Range.endExclusive < g.start && i.s2Range.endExclusive < b.start)) { const P = K.tryCreate(i.s1Range.endExclusive, g.start), T = K.tryCreate(i.s2Range.endExclusive, b.start); i.deleted += (y = P == null ? void 0 : P.length) !== null && y !== void 0 ? y : 0, i.added += (k = T == null ? void 0 : T.length) !== null && k !== void 0 ? k : 0, i.s1Range = i.s1Range.join(g), i.s2Range = i.s2Range.join(b); } else s(), i = { added: 0, deleted: 0, count: 0, s1Range: g, s2Range: b }; const F = g.intersect(l.seq1Range), E = b.intersect(l.seq2Range); i.count++, i.deleted += (w = F == null ? void 0 : F.length) !== null && w !== void 0 ? w : 0, i.added += (S = E == null ? void 0 : E.length) !== null && S !== void 0 ? S : 0; }; var o = c; const h = t.findWordContaining(l.seq1Range.start - 1), u = e.findWordContaining(l.seq2Range.start - 1), f = t.findWordContaining(l.seq1Range.endExclusive), m = e.findWordContaining(l.seq2Range.endExclusive); h && f && u && m && h.equals(f) && u.equals(m) ? c(h, u) : (h && u && c(h, u), f && m && c(f, m)); } return s(), cd(n, r); } function cd(t, e) { const n = []; for (; t.length > 0 || e.length > 0; ) { const r = t[0], i = e[0]; let s; r && (!i || r.seq1Range.start < i.seq1Range.start) ? s = t.shift() : s = e.shift(), n.length > 0 && n[n.length - 1].seq1Range.endExclusive >= s.seq1Range.start ? n[n.length - 1] = n[n.length - 1].join(s) : n.push(s); } return n; } function hd(t, e, n) { let r = n; if (r.length === 0) return r; let i = 0, s; do { s = !1; const o = [ r[0] ]; for (let l = 1; l < r.length; l++) { let u = function(m, g) { const b = new K(h.seq1Range.endExclusive, c.seq1Range.start); return t.getText(b).replace(/\s/g, "").length <= 4 && (m.seq1Range.length + m.seq2Range.length > 5 || g.seq1Range.length + g.seq2Range.length > 5); }; var a = u; const c = r[l], h = o[o.length - 1]; u(h, c) ? (s = !0, o[o.length - 1] = o[o.length - 1].join(c)) : o.push(c); } r = o; } while (i++ < 10 && s); return r; } function dd(t, e, n) { let r = n; if (r.length === 0) return r; let i = 0, s; do { s = !1; const l = [ r[0] ]; for (let c = 1; c < r.length; c++) { let f = function(g, b) { const y = new K(u.seq1Range.endExclusive, h.seq1Range.start); if (t.countLinesIn(y) > 5 || y.length > 500) return !1; const w = t.getText(y).trim(); if (w.length > 20 || w.split(/\r\n|\r|\n/).length > 1) return !1; const S = t.countLinesIn(g.seq1Range), F = g.seq1Range.length, E = e.countLinesIn(g.seq2Range), P = g.seq2Range.length, T = t.countLinesIn(b.seq1Range), W = b.seq1Range.length, H = e.countLinesIn(b.seq2Range), re = b.seq2Range.length, X = 2 * 40 + 50; function D(N) { return Math.min(N, X); } return Math.pow(Math.pow(D(S * 40 + F), 1.5) + Math.pow(D(E * 40 + P), 1.5), 1.5) + Math.pow(Math.pow(D(T * 40 + W), 1.5) + Math.pow(D(H * 40 + re), 1.5), 1.5) > Math.pow(Math.pow(X, 1.5), 1.5) * 1.3; }; var o = f; const h = r[c], u = l[l.length - 1]; f(u, h) ? (s = !0, l[l.length - 1] = l[l.length - 1].join(h)) : l.push(h); } r = l; } while (i++ < 10 && s); const a = []; return hh(r, (l, c, h) => { let u = c; function f(w) { return w.length > 0 && w.trim().length <= 3 && c.seq1Range.length + c.seq2Range.length > 100; } const m = t.extendToFullLines(c.seq1Range), g = t.getText(new K(m.start, c.seq1Range.start)); f(g) && (u = u.deltaStart(-g.length)); const b = t.getText(new K(c.seq1Range.endExclusive, m.endExclusive)); f(b) && (u = u.deltaEnd(b.length)); const y = fe.fromOffsetPairs(l ? l.getEndExclusives() : Ye.zero, h ? h.getStarts() : Ye.max), k = u.intersect(y); a.push(k); }), a; } class Ca { constructor(e, n) { this.trimmedHash = e, this.lines = n; } getElement(e) { return this.trimmedHash[e]; } get length() { return this.trimmedHash.length; } getBoundaryScore(e) { const n = e === 0 ? 0 : ka(this.lines[e - 1]), r = e === this.lines.length ? 0 : ka(this.lines[e]); return 1e3 - (n + r); } getText(e) { return this.lines.slice(e.start, e.endExclusive).join(` `); } isStronglyEqual(e, n) { return this.lines[e] === this.lines[n]; } } function ka(t) { let e = 0; for (; e < t.length && (t.charCodeAt(e) === 32 || t.charCodeAt(e) === 9); ) e++; return e; } class ud { constructor() { this.dynamicProgrammingDiffing = new Xh(), this.myersDiffingAlgorithm = new yl(); } computeDiff(e, n, r) { if (e.length <= 1 && oh(e, n, (E, P) => E === P)) return new nr([], [], !1); if (e.length === 1 && e[0].length === 0 || n.length === 1 && n[0].length === 0) return new nr([ new lt(new ee(1, e.length + 1), new ee(1, n.length + 1), [ new kn(new we(1, 1, e.length, e[0].length + 1), new we(1, 1, n.length, n[0].length + 1)) ]) ], [], !1); const i = r.maxComputationTimeMs === 0 ? _n.instance : new Jh(r.maxComputationTimeMs), s = !r.ignoreTrimWhitespace, a = /* @__PURE__ */ new Map(); function o(E) { let P = a.get(E); return P === void 0 && (P = a.size, a.set(E, P)), P; } const l = e.map((E) => o(E.trim())), c = n.map((E) => o(E.trim())), h = new Ca(l, e), u = new Ca(c, n), f = (() => h.length + u.length < 1700 ? this.dynamicProgrammingDiffing.compute(h, u, i, (E, P) => e[E] === n[P] ? n[P].length === 0 ? 0.1 : 1 + Math.log(1 + n[P].length) : 0.99) : this.myersDiffingAlgorithm.compute(h, u))(); let m = f.diffs, g = f.hitTimeout; m = xa(h, u, m), m = hd(h, u, m); const b = [], y = (E) => { if (s) for (let P = 0; P < E; P++) { const T = k + P, W = w + P; if (e[T] !== n[W]) { const H = this.refineDiff(e, n, new fe(new K(T, T + 1), new K(W, W + 1)), i, s); for (const re of H.mappings) b.push(re); H.hitTimeout && (g = !0); } } }; let k = 0, w = 0; for (const E of m) { cr(() => E.seq1Range.start - k === E.seq2Range.start - w); const P = E.seq1Range.start - k; y(P), k = E.seq1Range.endExclusive, w = E.seq2Range.endExclusive; const T = this.refineDiff(e, n, E, i, s); T.hitTimeout && (g = !0); for (const W of T.mappings) b.push(W); } y(e.length - k); const S = _a(b, e, n); let F = []; return r.computeMoves && (F = this.computeMoves(S, e, n, l, c, i, s)), cr(() => { function E(T, W) { if (T.lineNumber < 1 || T.lineNumber > W.length) return !1; const H = W[T.lineNumber - 1]; return !(T.column < 1 || T.column > H.length + 1); } function P(T, W) { return !(T.startLineNumber < 1 || T.startLineNumber > W.length + 1 || T.endLineNumberExclusive < 1 || T.endLineNumberExclusive > W.length + 1); } for (const T of S) { if (!T.innerChanges) return !1; for (const W of T.innerChanges) if (!(E(W.modifiedRange.getStartPosition(), n) && E(W.modifiedRange.getEndPosition(), n) && E(W.originalRange.getStartPosition(), e) && E(W.originalRange.getEndPosition(), e))) return !1; if (!P(T.modified, n) || !P(T.original, e)) return !1; } return !0; }), new nr(S, F, g); } computeMoves(e, n, r, i, s, a, o) { return ed(e, n, r, i, s, a).map((h) => { const u = this.refineDiff(n, r, new fe(h.original.toOffsetRange(), h.modified.toOffsetRange()), a, o), f = _a(u.mappings, n, r, !0); return new Vh(h, f); }); } refineDiff(e, n, r, i, s) { const a = new hr(e, r.seq1Range, s), o = new hr(n, r.seq2Range, s), l = a.length + o.length < 500 ? this.dynamicProgrammingDiffing.compute(a, o, i) : this.myersDiffingAlgorithm.compute(a, o, i); let c = l.diffs; return c = xa(a, o, c), c = ld(a, o, c), c = od(a, o, c), c = dd(a, o, c), { mappings: c.map((u) => new kn(a.translateRange(u.seq1Range), o.translateRange(u.seq2Range))), hitTimeout: l.hitTimeout }; } } function _a(t, e, n, r = !1) { const i = []; for (const s of lh(t.map((a) => pd(a, e, n)), (a, o) => a.original.overlapOrTouch(o.original) || a.modified.overlapOrTouch(o.modified))) { const a = s[0], o = s[s.length - 1]; i.push(new lt(a.original.join(o.original), a.modified.join(o.modified), s.map((l) => l.innerChanges[0]))); } return cr(() => !r && i.length > 0 && i[0].original.startLineNumber !== i[0].modified.startLineNumber ? !1 : bl(i, (s, a) => a.original.startLineNumber - s.original.endLineNumberExclusive === a.modified.startLineNumber - s.modified.endLineNumberExclusive && // There has to be an unchanged line in between (otherwise both diffs should have been joined) s.original.endLineNumberExclusive < a.original.startLineNumber && s.modified.endLineNumberExclusive < a.modified.startLineNumber)), i; } function pd(t, e, n) { let r = 0, i = 0; t.modifiedRange.endColumn === 1 && t.originalRange.endColumn === 1 && t.originalRange.startLineNumber + r <= t.originalRange.endLineNumber && t.modifiedRange.startLineNumber + r <= t.modifiedRange.endLineNumber && (i = -1), t.modifiedRange.startColumn - 1 >= n[t.modifiedRange.startLineNumber - 1].length && t.originalRange.startColumn - 1 >= e[t.originalRange.startLineNumber - 1].length && t.originalRange.startLineNumber <= t.originalRange.endLineNumber + i && t.modifiedRange.startLineNumber <= t.modifiedRange.endLineNumber + i && (r = 1); const s = new ee(t.originalRange.startLineNumber + r, t.originalRange.endLineNumber + 1 + i), a = new ee(t.modifiedRange.startLineNumber + r, t.modifiedRange.endLineNumber + 1 + i); return new lt(s, a, [t]); } const Ra = { getLegacy: () => new jh(), getDefault: () => new ud() }; function xt(t, e) { const n = Math.pow(10, e); return Math.round(t * n) / n; } class xe { constructor(e, n, r, i = 1) { this._rgbaBrand = void 0, this.r = Math.min(255, Math.max(0, e)) | 0, this.g = Math.min(255, Math.max(0, n)) | 0, this.b = Math.min(255, Math.max(0, r)) | 0, this.a = xt(Math.max(Math.min(1, i), 0), 3); } static equals(e, n) { return e.r === n.r && e.g === n.g && e.b === n.b && e.a === n.a; } } class Oe { constructor(e, n, r, i) { this._hslaBrand = void 0, this.h = Math.max(Math.min(360, e), 0) | 0, this.s = xt(Math.max(Math.min(1, n), 0), 3), this.l = xt(Math.max(Math.min(1, r), 0), 3), this.a = xt(Math.max(Math.min(1, i), 0), 3); } static equals(e, n) { return e.h === n.h && e.s === n.s && e.l === n.l && e.a === n.a; } /** * Converts an RGB color value to HSL. Conversion formula * adapted from http://en.wikipedia.org/wiki/HSL_color_space. * Assumes r, g, and b are contained in the set [0, 255] and * returns h in the set [0, 360], s, and l in the set [0, 1]. */ static fromRGBA(e) { const n = e.r / 255, r = e.g / 255, i = e.b / 255, s = e.a, a = Math.max(n, r, i), o = Math.min(n, r, i); let l = 0, c = 0; const h = (o + a) / 2, u = a - o; if (u > 0) { switch (c = Math.min(h <= 0.5 ? u / (2 * h) : u / (2 - 2 * h), 1), a) { case n: l = (r - i) / u + (r < i ? 6 : 0); break; case r: l = (i - n) / u + 2; break; case i: l = (n - r) / u + 4; break; } l *= 60, l = Math.round(l); } return new Oe(l, c, h, s); } static _hue2rgb(e, n, r) { return r < 0 && (r += 1), r > 1 && (r -= 1), r < 1 / 6 ? e + (n - e) * 6 * r : r < 1 / 2 ? n : r < 2 / 3 ? e + (n - e) * (2 / 3 - r) * 6 : e; } /** * Converts an HSL color value to RGB. Conversion formula * adapted from http://en.wikipedia.org/wiki/HSL_color_space. * Assumes h in the set [0, 360] s, and l are contained in the set [0, 1] and * returns r, g, and b in the set [0, 255]. */ static toRGBA(e) { const n = e.h / 360, { s: r, l: i, a: s } = e; let a, o, l; if (r === 0) a = o = l = i; else { const c = i < 0.5 ? i * (1 + r) : i + r - i * r, h = 2 * i - c; a = Oe._hue2rgb(h, c, n + 1 / 3), o = Oe._hue2rgb(h, c, n), l = Oe._hue2rgb(h, c, n - 1 / 3); } return new xe(Math.round(a * 255), Math.round(o * 255), Math.round(l * 255), s); } } class Vt { constructor(e, n, r, i) { this._hsvaBrand = void 0, this.h = Math.max(Math.min(360, e), 0) | 0, this.s = xt(Math.max(Math.min(1, n), 0), 3), this.v = xt(Math.max(Math.min(1, r), 0), 3), this.a = xt(Math.max(Math.min(1, i), 0), 3); } static equals(e, n) { return e.h === n.h && e.s === n.s && e.v === n.v && e.a === n.a; } // from http://www.rapidtables.com/convert/color/rgb-to-hsv.htm static fromRGBA(e) { const n = e.r / 255, r = e.g / 255, i = e.b / 255, s = Math.max(n, r, i), a = Math.min(n, r, i), o = s - a, l = s === 0 ? 0 : o / s; let c; return o === 0 ? c = 0 : s === n ? c = ((r - i) / o % 6 + 6) % 6 : s === r ? c = (i - n) / o + 2 : c = (n - r) / o + 4, new Vt(Math.round(c * 60), l, s, e.a); } // from http://www.rapidtables.com/convert/color/hsv-to-rgb.htm static toRGBA(e) { const { h: n, s: r, v: i, a: s } = e, a = i * r, o = a * (1 - Math.abs(n / 60 % 2 - 1)), l = i - a; let [c, h, u] = [0, 0, 0]; return n < 60 ? (c = a, h = o) : n < 120 ? (c = o, h = a) : n < 180 ? (h = a, u = o) : n < 240 ? (h = o, u = a) : n < 300 ? (c = o, u = a) : n <= 360 && (c = a, u = o), c = Math.round((c + l) * 255), h = Math.round((h + l) * 255), u = Math.round((u + l) * 255), new xe(c, h, u, s); } } let be = class Te { static fromHex(e) { return Te.Format.CSS.parseHex(e) || Te.red; } static equals(e, n) { return !e && !n ? !0 : !e || !n ? !1 : e.equals(n); } get hsla() { return this._hsla ? this._hsla : Oe.fromRGBA(this.rgba); } get hsva() { return this._hsva ? this._hsva : Vt.fromRGBA(this.rgba); } constructor(e) { if (e) if (e instanceof xe) this.rgba = e; else if (e instanceof Oe) this._hsla = e, this.rgba = Oe.toRGBA(e); else if (e instanceof Vt) this._hsva = e, this.rgba = Vt.toRGBA(e); else throw new Error("Invalid color ctor argument"); else throw new Error("Color needs a value"); } equals(e) { return !!e && xe.equals(this.rgba, e.rgba) && Oe.equals(this.hsla, e.hsla) && Vt.equals(this.hsva, e.hsva); } /** * http://www.w3.org/TR/WCAG20/#relativeluminancedef * Returns the number in the set [0, 1]. O => Darkest Black. 1 => Lightest white. */ getRelativeLuminance() { const e = Te._relativeLuminanceForComponent(this.rgba.r), n = Te._relativeLuminanceForComponent(this.rgba.g), r = Te._relativeLuminanceForComponent(this.rgba.b), i = 0.2126 * e + 0.7152 * n + 0.0722 * r; return xt(i, 4); } static _relativeLuminanceForComponent(e) { const n = e / 255; return n <= 0.03928 ? n / 12.92 : Math.pow((n + 0.055) / 1.055, 2.4); } /** * http://24ways.org/2010/calculating-color-contrast * Return 'true' if lighter color otherwise 'false' */ isLighter() { return (this.rgba.r * 299 + this.rgba.g * 587 + this.rgba.b * 114) / 1e3 >= 128; } isLighterThan(e) { const n = this.getRelativeLuminance(), r = e.getRelativeLuminance(); return n > r; } isDarkerThan(e) { const n = this.getRelativeLuminance(), r = e.getRelativeLuminance(); return n < r; } lighten(e) { return new Te(new Oe(this.hsla.h, this.hsla.s, this.hsla.l + this.hsla.l * e, this.hsla.a)); } darken(e) { return new Te(new Oe(this.hsla.h, this.hsla.s, this.hsla.l - this.hsla.l * e, this.hsla.a)); } transparent(e) { const { r: n, g: r, b: i, a: s } = this.rgba; return new Te(new xe(n, r, i, s * e)); } isTransparent() { return this.rgba.a === 0; } isOpaque() { return this.rgba.a === 1; } opposite() { return new Te(new xe(255 - this.rgba.r, 255 - this.rgba.g, 255 - this.rgba.b, this.rgba.a)); } makeOpaque(e) { if (this.isOpaque() || e.rgba.a !== 1) return this; const { r: n, g: r, b: i, a: s } = this.rgba; return new Te(new xe(e.rgba.r - s * (e.rgba.r - n), e.rgba.g - s * (e.rgba.g - r), e.rgba.b - s * (e.rgba.b - i), 1)); } toString() { return this._toString || (this._toString = Te.Format.CSS.format(this)), this._toString; } static getLighterColor(e, n, r) { if (e.isLighterThan(n)) return e; r = r || 0.5; const i = e.getRelativeLuminance(), s = n.getRelativeLuminance(); return r = r * (s - i) / s, e.lighten(r); } static getDarkerColor(e, n, r) { if (e.isDarkerThan(n)) return e; r = r || 0.5; const i = e.getRelativeLuminance(), s = n.getRelativeLuminance(); return r = r * (i - s) / i, e.darken(r); } }; be.white = new be(new xe(255, 255, 255, 1)); be.black = new be(new xe(0, 0, 0, 1)); be.red = new be(new xe(255, 0, 0, 1)); be.blue = new be(new xe(0, 0, 255, 1)); be.green = new be(new xe(0, 255, 0, 1)); be.cyan = new be(new xe(0, 255, 255, 1)); be.lightgrey = new be(new xe(211, 211, 211, 1)); be.transparent = new be(new xe(0, 0, 0, 0)); (function(t) { (function(e) { (function(n) { function r(m) { return m.rgba.a === 1 ? `rgb(${m.rgba.r}, ${m.rgba.g}, ${m.rgba.b})` : t.Format.CSS.formatRGBA(m); } n.formatRGB = r; function i(m) { return `rgba(${m.rgba.r}, ${m.rgba.g}, ${m.rgba.b}, ${+m.rgba.a.toFixed(2)})`; } n.formatRGBA = i; function s(m) { return m.hsla.a === 1 ? `hsl(${m.hsla.h}, ${(m.hsla.s * 100).toFixed(2)}%, ${(m.hsla.l * 100).toFixed(2)}%)` : t.Format.CSS.formatHSLA(m); } n.formatHSL = s; function a(m) { return `hsla(${m.hsla.h}, ${(m.hsla.s * 100).toFixed(2)}%, ${(m.hsla.l * 100).toFixed(2)}%, ${m.hsla.a.toFixed(2)})`; } n.formatHSLA = a; function o(m) { const g = m.toString(16); return g.length !== 2 ? "0" + g : g; } function l(m) { return `#${o(m.rgba.r)}${o(m.rgba.g)}${o(m.rgba.b)}`; } n.formatHex = l; function c(m, g = !1) { return g && m.rgba.a === 1 ? t.Format.CSS.formatHex(m) : `#${o(m.rgba.r)}${o(m.rgba.g)}${o(m.rgba.b)}${o(Math.round(m.rgba.a * 255))}`; } n.formatHexA = c; function h(m) { return m.isOpaque() ? t.Format.CSS.formatHex(m) : t.Format.CSS.formatRGBA(m); } n.format = h; function u(m) { const g = m.length; if (g === 0 || m.charCodeAt(0) !== 35) return null; if (g === 7) { const b = 16 * f(m.charCodeAt(1)) + f(m.charCodeAt(2)), y = 16 * f(m.charCodeAt(3)) + f(m.charCodeAt(4)), k = 16 * f(m.charCodeAt(5)) + f(m.charCodeAt(6)); return new t(new xe(b, y, k, 1)); } if (g === 9) { const b = 16 * f(m.charCodeAt(1)) + f(m.charCodeAt(2)), y = 16 * f(m.charCodeAt(3)) + f(m.charCodeAt(4)), k = 16 * f(m.charCodeAt(5)) + f(m.charCodeAt(6)), w = 16 * f(m.charCodeAt(7)) + f(m.charCodeAt(8)); return new t(new xe(b, y, k, w / 255)); } if (g === 4) { const b = f(m.charCodeAt(1)), y = f(m.charCodeAt(2)), k = f(m.charCodeAt(3)); return new t(new xe(16 * b + b, 16 * y + y, 16 * k + k)); } if (g === 5) { const b = f(m.charCodeAt(1)), y = f(m.charCodeAt(2)), k = f(m.charCodeAt(3)), w = f(m.charCodeAt(4)); return new t(new xe(16 * b + b, 16 * y + y, 16 * k + k, (16 * w + w) / 255)); } return null; } n.parseHex = u; function f(m) { switch (m) { case 48: return 0; case 49: return 1; case 50: return 2; case 51: return 3; case 52: return 4; case 53: return 5; case 54: return 6; case 55: return 7; case 56: return 8; case 57: return 9; case 97: return 10; case 65: return 10; case 98: return 11; case 66: return 11; case 99: return 12; case 67: return 12; case 100: return 13; case 68: return 13; case 101: return 14; case 69: return 14; case 102: return 15; case 70: return 15; } return 0; } })(e.CSS || (e.CSS = {})); })(t.Format || (t.Format = {})); })(be || (be = {})); function wl(t) { const e = []; for (const n of t) { const r = Number(n); (r || r === 0 && n.replace(/\s/g, "") !== "") && e.push(r); } return e; } function Bi(t, e, n, r) { return { red: t / 255, blue: n / 255, green: e / 255, alpha: r }; } function sn(t, e) { const n = e.index, r = e[0].length; if (!n) return; const i = t.positionAt(n); return { startLineNumber: i.lineNumber, startColumn: i.column, endLineNumber: i.lineNumber, endColumn: i.column + r }; } function fd(t, e) { if (!t) return; const n = be.Format.CSS.parseHex(e); if (n) return { range: t, color: Bi(n.rgba.r, n.rgba.g, n.rgba.b, n.rgba.a) }; } function Fa(t, e, n) { if (!t || e.length !== 1) return; const i = e[0].values(), s = wl(i); return { range: t, color: Bi(s[0], s[1], s[2], n ? s[3] : 1) }; } function Ea(t, e, n) { if (!t || e.length !== 1) return; const i = e[0].values(), s = wl(i), a = new be(new Oe(s[0], s[1] / 100, s[2] / 100, n ? s[3] : 1)); return { range: t, color: Bi(a.rgba.r, a.rgba.g, a.rgba.b, a.rgba.a) }; } function an(t, e) { return typeof t == "string" ? [...t.matchAll(e)] : t.findMatches(e); } function md(t) { const e = [], r = an(t, /\b(rgb|rgba|hsl|hsla)(\([0-9\s,.\%]*\))|(#)([A-Fa-f0-9]{3})\b|(#)([A-Fa-f0-9]{4})\b|(#)([A-Fa-f0-9]{6})\b|(#)([A-Fa-f0-9]{8})\b/gm); if (r.length > 0) for (const i of r) { const s = i.filter((c) => c !== void 0), a = s[1], o = s[2]; if (!o) continue; let l; if (a === "rgb") { const c = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm; l = Fa(sn(t, i), an(o, c), !1); } else if (a === "rgba") { const c = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm; l = Fa(sn(t, i), an(o, c), !0); } else if (a === "hsl") { const c = /^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm; l = Ea(sn(t, i), an(o, c), !1); } else if (a === "hsla") { const c = /^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm; l = Ea(sn(t, i), an(o, c), !0); } else a === "#" && (l = fd(sn(t, i), a + o)); l && e.push(l); } return e; } function gd(t) { return !t || typeof t.getValue != "function" || typeof t.positionAt != "function" ? [] : md(t); } var ut = globalThis && globalThis.__awaiter || function(t, e, n, r) { function i(s) { return s instanceof n ? s : new n(function(a) { a(s); }); } return new (n || (n = Promise))(function(s, a) { function o(h) { try { c(r.next(h)); } catch (u) { a(u); } } function l(h) { try { c(r.throw(h)); } catch (u) { a(u); } } function c(h) { h.done ? s(h.value) : i(h.value).then(o, l); } c((r = r.apply(t, e || [])).next()); }); }; class bd extends mh { get uri() { return this._uri; } get eol() { return this._eol; } getValue() { return this.getText(); } findMatches(e) { const n = []; for (let r = 0; r < this._lines.length; r++) { const i = this._lines[r], s = this.offsetAt(new Qe(r + 1, 1)), a = i.matchAll(e); for (const o of a) (o.index || o.index === 0) && (o.index = o.index + s), n.push(o); } return n; } getLinesContent() { return this._lines.slice(0); } getLineCount() { return this._lines.length; } getLineContent(e) { return this._lines[e - 1]; } getWordAtPosition(e, n) { const r = Oi(e.column, vh(n), this._lines[e.lineNumber - 1], 0); return r ? new we(e.lineNumber, r.startColumn, e.lineNumber, r.endColumn) : null; } words(e) { const n = this._lines, r = this._wordenize.bind(this); let i = 0, s = "", a = 0, o = []; return { *[Symbol.iterator]() { for (; ; ) if (a < o.length) { const l = s.substring(o[a].start, o[a].end); a += 1, yield l; } else if (i < n.length) s = n[i], o = r(s, e), a = 0, i += 1; else break; } }; } getLineWords(e, n) { const r = this._lines[e - 1], i = this._wordenize(r, n), s = []; for (const a of i) s.push({ word: r.substring(a.start, a.end), startColumn: a.start + 1, endColumn: a.end + 1 }); return s; } _wordenize(e, n) { const r = []; let i; for (n.lastIndex = 0; (i = n.exec(e)) && i[0].length !== 0; ) r.push({ start: i.index, end: i.index + i[0].length }); return r; } getValueInRange(e) { if (e = this._validateRange(e), e.startLineNumber === e.endLineNumber) return this._lines[e.startLineNumber - 1].substring(e.startColumn - 1, e.endColumn - 1); const n = this._eol, r = e.startLineNumber - 1, i = e.endLineNumber - 1, s = []; s.push(this._lines[r].substring(e.startColumn - 1)); for (let a = r + 1; a < i; a++) s.push(this._lines[a]); return s.push(this._lines[i].substring(0, e.endColumn - 1)), s.join(n); } offsetAt(e) { return e = this._validatePosition(e), this._ensureLineStarts(), this._lineStarts.getPrefixSum(e.lineNumber - 2) + (e.column - 1); } positionAt(e) { e = Math.floor(e), e = Math.max(0, e), this._ensureLineStarts(); const n = this._lineStarts.getIndexOf(e), r = this._lines[n.index].length; return { lineNumber: 1 + n.index, column: 1 + Math.min(n.remainder, r) }; } _validateRange(e) { const n = this._validatePosition({ lineNumber: e.startLineNumber, column: e.startColumn }), r = this._validatePosition({ lineNumber: e.endLineNumber, column: e.endColumn }); return n.lineNumber !== e.startLineNumber || n.column !== e.startColumn || r.lineNumber !== e.endLineNumber || r.column !== e.endColumn ? { startLineNumber: n.lineNumber, startColumn: n.column, endLineNumber: r.lineNumber, endColumn: r.column } : e; } _validatePosition(e) { if (!Qe.isIPosition(e)) throw new Error("bad position"); let { lineNumber: n, column: r } = e, i = !1; if (n < 1) n = 1, r = 1, i = !0; else if (n > this._lines.length) n = this._lines.length, r = this._lines[n - 1].length + 1, i = !0; else { const s = this._lines[n - 1].length + 1; r < 1 ? (r = 1, i = !0) : r > s && (r = s, i = !0); } return i ? { lineNumber: n, column: r } : e; } } class At { constructor(e, n) { this._host = e, this._models = /* @__PURE__ */ Object.create(null), this._foreignModuleFactory = n, this._foreignModule = null; } dispose() { this._models = /* @__PURE__ */ Object.create(null); } _getModel(e) { return this._models[e]; } _getModels() { const e = []; return Object.keys(this._models).forEach((n) => e.push(this._models[n])), e; } acceptNewModel(e) { this._models[e.url] = new bd(Wi.parse(e.url), e.lines, e.EOL, e.versionId); } acceptModelChanged(e, n) { if (!this._models[e]) return; this._models[e].onEvents(n); } acceptRemovedModel(e) { this._models[e] && delete this._models[e]; } computeUnicodeHighlights(e, n, r) { return ut(this, void 0, void 0, function* () { const i = this._getModel(e); return i ? Oh.computeUnicodeHighlights(i, n, r) : { ranges: [], hasMore: !1, ambiguousCharacterCount: 0, invisibleCharacterCount: 0, nonBasicAsciiCharacterCount: 0 }; }); } // ---- BEGIN diff -------------------------------------------------------------------------- computeDiff(e, n, r, i) { return ut(this, void 0, void 0, function* () { const s = this._getModel(e), a = this._getModel(n); return !s || !a ? null : At.computeDiff(s, a, r, i); }); } static computeDiff(e, n, r, i) { const s = i === "advanced" ? Ra.getDefault() : Ra.getLegacy(), a = e.getLinesContent(), o = n.getLinesContent(), l = s.computeDiff(a, o, r), c = l.changes.length > 0 ? !1 : this._modelsAreIdentical(e, n); function h(u) { return u.map((f) => { var m; return [f.original.startLineNumber, f.original.endLineNumberExclusive, f.modified.startLineNumber, f.modified.endLineNumberExclusive, (m = f.innerChanges) === null || m === void 0 ? void 0 : m.map((g) => [ g.originalRange.startLineNumber, g.originalRange.startColumn, g.originalRange.endLineNumber, g.originalRange.endColumn, g.modifiedRange.startLineNumber, g.modifiedRange.startColumn, g.modifiedRange.endLineNumber, g.modifiedRange.endColumn ])]; }); } return { identical: c, quitEarly: l.hitTimeout, changes: h(l.changes), moves: l.moves.map((u) => [ u.lineRangeMapping.original.startLineNumber, u.lineRangeMapping.original.endLineNumberExclusive, u.lineRangeMapping.modified.startLineNumber, u.lineRangeMapping.modified.endLineNumberExclusive, h(u.changes) ]) }; } static _modelsAreIdentical(e, n) { const r = e.getLineCount(), i = n.getLineCount(); if (r !== i) return !1; for (let s = 1; s <= r; s++) { const a = e.getLineContent(s), o = n.getLineContent(s); if (a !== o) return !1; } return !0; } computeMoreMinimalEdits(e, n, r) { return ut(this, void 0, void 0, function* () { const i = this._getModel(e); if (!i) return n; const s = []; let a; n = n.slice(0).sort((l, c) => { if (l.range && c.range) return we.compareRangesUsingStarts(l.range, c.range); const h = l.range ? 0 : 1, u = c.range ? 0 : 1; return h - u; }); let o = 0; for (let l = 1; l < n.length; l++) we.getEndPosition(n[o].range).equals(we.getStartPosition(n[l].range)) ? (n[o].range = we.fromPositions(we.getStartPosition(n[o].range), we.getEndPosition(n[l].range)), n[o].text += n[l].text) : (o++, n[o] = n[l]); n.length = o + 1; for (let { range: l, text: c, eol: h } of n) { if (typeof h == "number" && (a = h), we.isEmpty(l) && !c) continue; const u = i.getValueInRange(l); if (c = c.replace(/\r\n|\n|\r/g, i.eol), u === c) continue; if (Math.max(c.length, u.length) > At._diffLimit) { s.push({ range: l, text: c }); continue; } const f = qc(u, c, r), m = i.offsetAt(we.lift(l).getStartPosition()); for (const g of f) { const b = i.positionAt(m + g.originalStart), y = i.positionAt(m + g.originalStart + g.originalLength), k = { text: c.substr(g.modifiedStart, g.modifiedLength), range: { startLineNumber: b.lineNumber, startColumn: b.column, endLineNumber: y.lineNumber, endColumn: y.column } }; i.getValueInRange(k.range) !== k.text && s.push(k); } } return typeof a == "number" && s.push({ eol: a, text: "", range: { startLineNumber: 0, startColumn: 0, endLineNumber: 0, endColumn: 0 } }), s; }); } // ---- END minimal edits --------------------------------------------------------------- computeLinks(e) { return ut(this, void 0, void 0, function* () { const n = this._getModel(e); return n ? kh(n) : null; }); } // --- BEGIN default document colors ----------------------------------------------------------- computeDefaultDocumentColors(e) { return ut(this, void 0, void 0, function* () { const n = this._getModel(e); return n ? gd(n) : null; }); } textualSuggest(e, n, r, i) { return ut(this, void 0, void 0, function* () { const s = new kr(), a = new RegExp(r, i), o = /* @__PURE__ */ new Set(); e: for (const l of e) { const c = this._getModel(l); if (c) { for (const h of c.words(a)) if (!(h === n || !isNaN(Number(h))) && (o.add(h), o.size > At._suggestionsLimit)) break e; } } return { words: Array.from(o), duration: s.elapsed() }; }); } // ---- END suggest -------------------------------------------------------------------------- //#region -- word ranges -- computeWordRanges(e, n, r, i) { return ut(this, void 0, void 0, function* () { const s = this._getModel(e); if (!s) return /* @__PURE__ */ Object.create(null); const a = new RegExp(r, i), o = /* @__PURE__ */ Object.create(null); for (let l = n.startLineNumber; l < n.endLineNumber; l++) { const c = s.getLineWords(l, a); for (const h of c) { if (!isNaN(Number(h.word))) continue; let u = o[h.word]; u || (u = [], o[h.word] = u), u.push({ startLineNumber: l, startColumn: h.startColumn, endLineNumber: l, endColumn: h.endColumn }); } } return o; }); } //#endregion navigateValueSet(e, n, r, i, s) { return ut(this, void 0, void 0, function* () { const a = this._getModel(e); if (!a) return null; const o = new RegExp(i, s); n.startColumn === n.endColumn && (n = { startLineNumber: n.startLineNumber, startColumn: n.startColumn, endLineNumber: n.endLineNumber, endColumn: n.endColumn + 1 }); const l = a.getValueInRange(n), c = a.getWordAtPosition({ lineNumber: n.startLineNumber, column: n.startColumn }, o); if (!c) return null; const h = a.getValueInRange(c); return ii.INSTANCE.navigateValueSet(n, l, c, h, r); }); } // ---- BEGIN foreign module support -------------------------------------------------------------------------- loadForeignModule(e, n, r) { const a = { host: mc(r, (o, l) => this._host.fhr(o, l)), getMirrorModels: () => this._getModels() }; return this._foreignModuleFactory ? (this._foreignModule = this._foreignModuleFactory(a, n), Promise.resolve(Kr(this._foreignModule))) : Promise.reject(new Error("Unexpected usage")); } // foreign method request fmr(e, n) { if (!this._foreignModule || typeof this._foreignModule[e] != "function") return Promise.reject(new Error("Missing requestHandler or method: " + e)); try { return Promise.resolve(this._foreignModule[e].apply(this._foreignModule, n)); } catch (r) { return Promise.reject(r); } } } At._diffLimit = 1e5; At._suggestionsLimit = 1e4; typeof importScripts == "function" && (globalThis.monaco = zh()); let gi = !1; function xl(t) { if (gi) return; gi = !0; const e = new Vc((n) => { globalThis.postMessage(n); }, (n) => new At(n, t)); globalThis.onmessage = (n) => { e.onmessage(n.data); }; } globalThis.onmessage = (t) => { gi || xl(null); }; /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ var p; (function(t) { t[t.Ident = 0] = "Ident", t[t.AtKeyword = 1] = "AtKeyword", t[t.String = 2] = "String", t[t.BadString = 3] = "BadString", t[t.UnquotedString = 4] = "UnquotedString", t[t.Hash = 5] = "Hash", t[t.Num = 6] = "Num", t[t.Percentage = 7] = "Percentage", t[t.Dimension = 8] = "Dimension", t[t.UnicodeRange = 9] = "UnicodeRange", t[t.CDO = 10] = "CDO", t[t.CDC = 11] = "CDC", t[t.Colon = 12] = "Colon", t[t.SemiColon = 13] = "SemiColon", t[t.CurlyL = 14] = "CurlyL", t[t.CurlyR = 15] = "CurlyR", t[t.ParenthesisL = 16] = "ParenthesisL", t[t.ParenthesisR = 17] = "ParenthesisR", t[t.BracketL = 18] = "BracketL", t[t.BracketR = 19] = "BracketR", t[t.Whitespace = 20] = "Whitespace", t[t.Includes = 21] = "Includes", t[t.Dashmatch = 22] = "Dashmatch", t[t.SubstringOperator = 23] = "SubstringOperator", t[t.PrefixOperator = 24] = "PrefixOperator", t[t.SuffixOperator = 25] = "SuffixOperator", t[t.Delim = 26] = "Delim", t[t.EMS = 27] = "EMS", t[t.EXS = 28] = "EXS", t[t.Length = 29] = "Length", t[t.Angle = 30] = "Angle", t[t.Time = 31] = "Time", t[t.Freq = 32] = "Freq", t[t.Exclamation = 33] = "Exclamation", t[t.Resolution = 34] = "Resolution", t[t.Comma = 35] = "Comma", t[t.Charset = 36] = "Charset", t[t.EscapedJavaScript = 37] = "EscapedJavaScript", t[t.BadEscapedJavaScript = 38] = "BadEscapedJavaScript", t[t.Comment = 39] = "Comment", t[t.SingleLineComment = 40] = "SingleLineComment", t[t.EOF = 41] = "EOF", t[t.CustomToken = 42] = "CustomToken"; })(p || (p = {})); var Da = function() { function t(e) { this.source = e, this.len = e.length, this.position = 0; } return t.prototype.substring = function(e, n) { return n === void 0 && (n = this.position), this.source.substring(e, n); }, t.prototype.eos = function() { return this.len <= this.position; }, t.prototype.pos = function() { return this.position; }, t.prototype.goBackTo = function(e) { this.position = e; }, t.prototype.goBack = function(e) { this.position -= e; }, t.prototype.advance = function(e) { this.position += e; }, t.prototype.nextChar = function() { return this.source.charCodeAt(this.position++) || 0; }, t.prototype.peekChar = function(e) { return e === void 0 && (e = 0), this.source.charCodeAt(this.position + e) || 0; }, t.prototype.lookbackChar = function(e) { return e === void 0 && (e = 0), this.source.charCodeAt(this.position - e) || 0; }, t.prototype.advanceIfChar = function(e) { return e === this.source.charCodeAt(this.position) ? (this.position++, !0) : !1; }, t.prototype.advanceIfChars = function(e) { if (this.position + e.length > this.source.length) return !1; for (var n = 0; n < e.length; n++) if (this.source.charCodeAt(this.position + n) !== e[n]) return !1; return this.advance(n), !0; }, t.prototype.advanceWhileChar = function(e) { for (var n = this.position; this.position < this.len && e(this.source.charCodeAt(this.position)); ) this.position++; return this.position - n; }, t; }(), Bn = "a".charCodeAt(0), Aa = "f".charCodeAt(0), Na = "z".charCodeAt(0), qn = "A".charCodeAt(0), Ma = "F".charCodeAt(0), za = "Z".charCodeAt(0), on = "0".charCodeAt(0), ln = "9".charCodeAt(0), vd = "~".charCodeAt(0), yd = "^".charCodeAt(0), cn = "=".charCodeAt(0), wd = "|".charCodeAt(0), kt = "-".charCodeAt(0), La = "_".charCodeAt(0), xd = "%".charCodeAt(0), Pr = "*".charCodeAt(0), Sl = "(".charCodeAt(0), Cl = ")".charCodeAt(0), Sd = "<".charCodeAt(0), Cd = ">".charCodeAt(0), kd = "@".charCodeAt(0), _d = "#".charCodeAt(0), Rd = "$".charCodeAt(0), Ir = "\\".charCodeAt(0), Pa = "/".charCodeAt(0), It = ` `.charCodeAt(0), Tt = "\r".charCodeAt(0), hn = "\f".charCodeAt(0), Ia = '"'.charCodeAt(0), Ta = "'".charCodeAt(0), Tr = " ".charCodeAt(0), Wr = " ".charCodeAt(0), Fd = ";".charCodeAt(0), Ed = ":".charCodeAt(0), Dd = "{".charCodeAt(0), Ad = "}".charCodeAt(0), Nd = "[".charCodeAt(0), Md = "]".charCodeAt(0), zd = ",".charCodeAt(0), Wa = ".".charCodeAt(0), Oa = "!".charCodeAt(0), Ld = "?".charCodeAt(0), Pd = "+".charCodeAt(0), et = {}; et[Fd] = p.SemiColon; et[Ed] = p.Colon; et[Dd] = p.CurlyL; et[Ad] = p.CurlyR; et[Md] = p.BracketR; et[Nd] = p.BracketL; et[Sl] = p.ParenthesisL; et[Cl] = p.ParenthesisR; et[zd] = p.Comma; var ve = {}; ve.em = p.EMS; ve.ex = p.EXS; ve.px = p.Length; ve.cm = p.Length; ve.mm = p.Length; ve.in = p.Length; ve.pt = p.Length; ve.pc = p.Length; ve.deg = p.Angle; ve.rad = p.Angle; ve.grad = p.Angle; ve.ms = p.Time; ve.s = p.Time; ve.hz = p.Freq; ve.khz = p.Freq; ve["%"] = p.Percentage; ve.fr = p.Percentage; ve.dpi = p.Resolution; ve.dpcm = p.Resolution; var Tn = function() { function t() { this.stream = new Da(""), this.ignoreComment = !0, this.ignoreWhitespace = !0, this.inURL = !1; } return t.prototype.setSource = function(e) { this.stream = new Da(e); }, t.prototype.finishToken = function(e, n, r) { return { offset: e, len: this.stream.pos() - e, type: n, text: r || this.stream.substring(e) }; }, t.prototype.substring = function(e, n) { return this.stream.substring(e, e + n); }, t.prototype.pos = function() { return this.stream.pos(); }, t.prototype.goBackTo = function(e) { this.stream.goBackTo(e); }, t.prototype.scanUnquotedString = function() { var e = this.stream.pos(), n = []; return this._unquotedString(n) ? this.finishToken(e, p.UnquotedString, n.join("")) : null; }, t.prototype.scan = function() { var e = this.trivia(); if (e !== null) return e; var n = this.stream.pos(); return this.stream.eos() ? this.finishToken(n, p.EOF) : this.scanNext(n); }, t.prototype.tryScanUnicode = function() { var e = this.stream.pos(); if (!this.stream.eos() && this._unicodeRange()) return this.finishToken(e, p.UnicodeRange); this.stream.goBackTo(e); }, t.prototype.scanNext = function(e) { if (this.stream.advanceIfChars([Sd, Oa, kt, kt])) return this.finishToken(e, p.CDO); if (this.stream.advanceIfChars([kt, kt, Cd])) return this.finishToken(e, p.CDC); var n = []; if (this.ident(n)) return this.finishToken(e, p.Ident, n.join("")); if (this.stream.advanceIfChar(kd)) if (n = ["@"], this._name(n)) { var r = n.join(""); return r === "@charset" ? this.finishToken(e, p.Charset, r) : this.finishToken(e, p.AtKeyword, r); } else return this.finishToken(e, p.Delim); if (this.stream.advanceIfChar(_d)) return n = ["#"], this._name(n) ? this.finishToken(e, p.Hash, n.join("")) : this.finishToken(e, p.Delim); if (this.stream.advanceIfChar(Oa)) return this.finishToken(e, p.Exclamation); if (this._number()) { var i = this.stream.pos(); if (n = [this.stream.substring(e, i)], this.stream.advanceIfChar(xd)) return this.finishToken(e, p.Percentage); if (this.ident(n)) { var s = this.stream.substring(i).toLowerCase(), a = ve[s]; return typeof a < "u" ? this.finishToken(e, a, n.join("")) : this.finishToken(e, p.Dimension, n.join("")); } return this.finishToken(e, p.Num); } n = []; var o = this._string(n); return o !== null ? this.finishToken(e, o, n.join("")) : (o = et[this.stream.peekChar()], typeof o < "u" ? (this.stream.advance(1), this.finishToken(e, o)) : this.stream.peekChar(0) === vd && this.stream.peekChar(1) === cn ? (this.stream.advance(2), this.finishToken(e, p.Includes)) : this.stream.peekChar(0) === wd && this.stream.peekChar(1) === cn ? (this.stream.advance(2), this.finishToken(e, p.Dashmatch)) : this.stream.peekChar(0) === Pr && this.stream.peekChar(1) === cn ? (this.stream.advance(2), this.finishToken(e, p.SubstringOperator)) : this.stream.peekChar(0) === yd && this.stream.peekChar(1) === cn ? (this.stream.advance(2), this.finishToken(e, p.PrefixOperator)) : this.stream.peekChar(0) === Rd && this.stream.peekChar(1) === cn ? (this.stream.advance(2), this.finishToken(e, p.SuffixOperator)) : (this.stream.nextChar(), this.finishToken(e, p.Delim))); }, t.prototype.trivia = function() { for (; ; ) { var e = this.stream.pos(); if (this._whitespace()) { if (!this.ignoreWhitespace) return this.finishToken(e, p.Whitespace); } else if (this.comment()) { if (!this.ignoreComment) return this.finishToken(e, p.Comment); } else return null; } }, t.prototype.comment = function() { if (this.stream.advanceIfChars([Pa, Pr])) { var e = !1, n = !1; return this.stream.advanceWhileChar(function(r) { return n && r === Pa ? (e = !0, !1) : (n = r === Pr, !0); }), e && this.stream.advance(1), !0; } return !1; }, t.prototype._number = function() { var e = 0, n; return this.stream.peekChar() === Wa && (e = 1), n = this.stream.peekChar(e), n >= on && n <= ln ? (this.stream.advance(e + 1), this.stream.advanceWhileChar(function(r) { return r >= on && r <= ln || e === 0 && r === Wa; }), !0) : !1; }, t.prototype._newline = function(e) { var n = this.stream.peekChar(); switch (n) { case Tt: case hn: case It: return this.stream.advance(1), e.push(String.fromCharCode(n)), n === Tt && this.stream.advanceIfChar(It) && e.push(` `), !0; } return !1; }, t.prototype._escape = function(e, n) { var r = this.stream.peekChar(); if (r === Ir) { this.stream.advance(1), r = this.stream.peekChar(); for (var i = 0; i < 6 && (r >= on && r <= ln || r >= Bn && r <= Aa || r >= qn && r <= Ma); ) this.stream.advance(1), r = this.stream.peekChar(), i++; if (i > 0) { try { var s = parseInt(this.stream.substring(this.stream.pos() - i), 16); s && e.push(String.fromCharCode(s)); } catch { } return r === Tr || r === Wr ? this.stream.advance(1) : this._newline([]), !0; } if (r !== Tt && r !== hn && r !== It) return this.stream.advance(1), e.push(String.fromCharCode(r)), !0; if (n) return this._newline(e); } return !1; }, t.prototype._stringChar = function(e, n) { var r = this.stream.peekChar(); return r !== 0 && r !== e && r !== Ir && r !== Tt && r !== hn && r !== It ? (this.stream.advance(1), n.push(String.fromCharCode(r)), !0) : !1; }, t.prototype._string = function(e) { if (this.stream.peekChar() === Ta || this.stream.peekChar() === Ia) { var n = this.stream.nextChar(); for (e.push(String.fromCharCode(n)); this._stringChar(n, e) || this._escape(e, !0); ) ; return this.stream.peekChar() === n ? (this.stream.nextChar(), e.push(String.fromCharCode(n)), p.String) : p.BadString; } return null; }, t.prototype._unquotedChar = function(e) { var n = this.stream.peekChar(); return n !== 0 && n !== Ir && n !== Ta && n !== Ia && n !== Sl && n !== Cl && n !== Tr && n !== Wr && n !== It && n !== hn && n !== Tt ? (this.stream.advance(1), e.push(String.fromCharCode(n)), !0) : !1; }, t.prototype._unquotedString = function(e) { for (var n = !1; this._unquotedChar(e) || this._escape(e); ) n = !0; return n; }, t.prototype._whitespace = function() { var e = this.stream.advanceWhileChar(function(n) { return n === Tr || n === Wr || n === It || n === hn || n === Tt; }); return e > 0; }, t.prototype._name = function(e) { for (var n = !1; this._identChar(e) || this._escape(e); ) n = !0; return n; }, t.prototype.ident = function(e) { var n = this.stream.pos(), r = this._minus(e); if (r) { if (this._minus(e) || this._identFirstChar(e) || this._escape(e)) { for (; this._identChar(e) || this._escape(e); ) ; return !0; } } else if (this._identFirstChar(e) || this._escape(e)) { for (; this._identChar(e) || this._escape(e); ) ; return !0; } return this.stream.goBackTo(n), !1; }, t.prototype._identFirstChar = function(e) { var n = this.stream.peekChar(); return n === La || n >= Bn && n <= Na || n >= qn && n <= za || n >= 128 && n <= 65535 ? (this.stream.advance(1), e.push(String.fromCharCode(n)), !0) : !1; }, t.prototype._minus = function(e) { var n = this.stream.peekChar(); return n === kt ? (this.stream.advance(1), e.push(String.fromCharCode(n)), !0) : !1; }, t.prototype._identChar = function(e) { var n = this.stream.peekChar(); return n === La || n === kt || n >= Bn && n <= Na || n >= qn && n <= za || n >= on && n <= ln || n >= 128 && n <= 65535 ? (this.stream.advance(1), e.push(String.fromCharCode(n)), !0) : !1; }, t.prototype._unicodeRange = function() { if (this.stream.advanceIfChar(Pd)) { var e = function(i) { return i >= on && i <= ln || i >= Bn && i <= Aa || i >= qn && i <= Ma; }, n = this.stream.advanceWhileChar(e) + this.stream.advanceWhileChar(function(i) { return i === Ld; }); if (n >= 1 && n <= 6) if (this.stream.advanceIfChar(kt)) { var r = this.stream.advanceWhileChar(e); if (r >= 1 && r <= 6) return !0; } else return !0; } return !1; }, t; }(); function ge(t, e) { if (t.length < e.length) return !1; for (var n = 0; n < e.length; n++) if (t[n] !== e[n]) return !1; return !0; } function kl(t, e) { var n = t.length - e.length; return n > 0 ? t.lastIndexOf(e) === n : n === 0 ? t === e : !1; } function Id(t, e, n) { n === void 0 && (n = 4); var r = Math.abs(t.length - e.length); if (r > n) return 0; var i = [], s = [], a, o; for (a = 0; a < e.length + 1; ++a) s.push(0); for (a = 0; a < t.length + 1; ++a) i.push(s); for (a = 1; a < t.length + 1; ++a) for (o = 1; o < e.length + 1; ++o) t[a - 1] === e[o - 1] ? i[a][o] = i[a - 1][o - 1] + 1 : i[a][o] = Math.max(i[a - 1][o], i[a][o - 1]); return i[t.length][e.length] - Math.sqrt(r); } function Ua(t, e) { return e === void 0 && (e = !0), t ? t.length < 140 ? t : t.slice(0, 140) + (e ? "…" : "") : ""; } function Td(t, e) { var n = e.exec(t); return n && n[0].length ? t.substr(0, t.length - n[0].length) : t; } function Va(t, e) { for (var n = ""; e > 0; ) (e & 1) === 1 && (n += t), t += t, e = e >>> 1; return n; } var U = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), v; (function(t) { t[t.Undefined = 0] = "Undefined", t[t.Identifier = 1] = "Identifier", t[t.Stylesheet = 2] = "Stylesheet", t[t.Ruleset = 3] = "Ruleset", t[t.Selector = 4] = "Selector", t[t.SimpleSelector = 5] = "SimpleSelector", t[t.SelectorInterpolation = 6] = "SelectorInterpolation", t[t.SelectorCombinator = 7] = "SelectorCombinator", t[t.SelectorCombinatorParent = 8] = "SelectorCombinatorParent", t[t.SelectorCombinatorSibling = 9] = "SelectorCombinatorSibling", t[t.SelectorCombinatorAllSiblings = 10] = "SelectorCombinatorAllSiblings", t[t.SelectorCombinatorShadowPiercingDescendant = 11] = "SelectorCombinatorShadowPiercingDescendant", t[t.Page = 12] = "Page", t[t.PageBoxMarginBox = 13] = "PageBoxMarginBox", t[t.ClassSelector = 14] = "ClassSelector", t[t.IdentifierSelector = 15] = "IdentifierSelector", t[t.ElementNameSelector = 16] = "ElementNameSelector", t[t.PseudoSelector = 17] = "PseudoSelector", t[t.AttributeSelector = 18] = "AttributeSelector", t[t.Declaration = 19] = "Declaration", t[t.Declarations = 20] = "Declarations", t[t.Property = 21] = "Property", t[t.Expression = 22] = "Expression", t[t.BinaryExpression = 23] = "BinaryExpression", t[t.Term = 24] = "Term", t[t.Operator = 25] = "Operator", t[t.Value = 26] = "Value", t[t.StringLiteral = 27] = "StringLiteral", t[t.URILiteral = 28] = "URILiteral", t[t.EscapedValue = 29] = "EscapedValue", t[t.Function = 30] = "Function", t[t.NumericValue = 31] = "NumericValue", t[t.HexColorValue = 32] = "HexColorValue", t[t.RatioValue = 33] = "RatioValue", t[t.MixinDeclaration = 34] = "MixinDeclaration", t[t.MixinReference = 35] = "MixinReference", t[t.VariableName = 36] = "VariableName", t[t.VariableDeclaration = 37] = "VariableDeclaration", t[t.Prio = 38] = "Prio", t[t.Interpolation = 39] = "Interpolation", t[t.NestedProperties = 40] = "NestedProperties", t[t.ExtendsReference = 41] = "ExtendsReference", t[t.SelectorPlaceholder = 42] = "SelectorPlaceholder", t[t.Debug = 43] = "Debug", t[t.If = 44] = "If", t[t.Else = 45] = "Else", t[t.For = 46] = "For", t[t.Each = 47] = "Each", t[t.While = 48] = "While", t[t.MixinContentReference = 49] = "MixinContentReference", t[t.MixinContentDeclaration = 50] = "MixinContentDeclaration", t[t.Media = 51] = "Media", t[t.Keyframe = 52] = "Keyframe", t[t.FontFace = 53] = "FontFace", t[t.Import = 54] = "Import", t[t.Namespace = 55] = "Namespace", t[t.Invocation = 56] = "Invocation", t[t.FunctionDeclaration = 57] = "FunctionDeclaration", t[t.ReturnStatement = 58] = "ReturnStatement", t[t.MediaQuery = 59] = "MediaQuery", t[t.MediaCondition = 60] = "MediaCondition", t[t.MediaFeature = 61] = "MediaFeature", t[t.FunctionParameter = 62] = "FunctionParameter", t[t.FunctionArgument = 63] = "FunctionArgument", t[t.KeyframeSelector = 64] = "KeyframeSelector", t[t.ViewPort = 65] = "ViewPort", t[t.Document = 66] = "Document", t[t.AtApplyRule = 67] = "AtApplyRule", t[t.CustomPropertyDeclaration = 68] = "CustomPropertyDeclaration", t[t.CustomPropertySet = 69] = "CustomPropertySet", t[t.ListEntry = 70] = "ListEntry", t[t.Supports = 71] = "Supports", t[t.SupportsCondition = 72] = "SupportsCondition", t[t.NamespacePrefix = 73] = "NamespacePrefix", t[t.GridLine = 74] = "GridLine", t[t.Plugin = 75] = "Plugin", t[t.UnknownAtRule = 76] = "UnknownAtRule", t[t.Use = 77] = "Use", t[t.ModuleConfiguration = 78] = "ModuleConfiguration", t[t.Forward = 79] = "Forward", t[t.ForwardVisibility = 80] = "ForwardVisibility", t[t.Module = 81] = "Module", t[t.UnicodeRange = 82] = "UnicodeRange"; })(v || (v = {})); var Z; (function(t) { t[t.Mixin = 0] = "Mixin", t[t.Rule = 1] = "Rule", t[t.Variable = 2] = "Variable", t[t.Function = 3] = "Function", t[t.Keyframe = 4] = "Keyframe", t[t.Unknown = 5] = "Unknown", t[t.Module = 6] = "Module", t[t.Forward = 7] = "Forward", t[t.ForwardVisibility = 8] = "ForwardVisibility"; })(Z || (Z = {})); function bi(t, e) { var n = null; return !t || e < t.offset || e > t.end ? null : (t.accept(function(r) { return r.offset === -1 && r.length === -1 ? !0 : r.offset <= e && r.end >= e ? (n ? r.length <= n.length && (n = r) : n = r, !0) : !1; }), n); } function qi(t, e) { for (var n = bi(t, e), r = []; n; ) r.unshift(n), n = n.parent; return r; } function Wd(t) { var e = t.findParent(v.Declaration), n = e && e.getValue(); return n && n.encloses(t) ? e : null; } var V = function() { function t(e, n, r) { e === void 0 && (e = -1), n === void 0 && (n = -1), this.parent = null, this.offset = e, this.length = n, r && (this.nodeType = r); } return Object.defineProperty(t.prototype, "end", { get: function() { return this.offset + this.length; }, enumerable: !1, configurable: !0 }), Object.defineProperty(t.prototype, "type", { get: function() { return this.nodeType || v.Undefined; }, set: function(e) { this.nodeType = e; }, enumerable: !1, configurable: !0 }), t.prototype.getTextProvider = function() { for (var e = this; e && !e.textProvider; ) e = e.parent; return e ? e.textProvider : function() { return "unknown"; }; }, t.prototype.getText = function() { return this.getTextProvider()(this.offset, this.length); }, t.prototype.matches = function(e) { return this.length === e.length && this.getTextProvider()(this.offset, this.length) === e; }, t.prototype.startsWith = function(e) { return this.length >= e.length && this.getTextProvider()(this.offset, e.length) === e; }, t.prototype.endsWith = function(e) { return this.length >= e.length && this.getTextProvider()(this.end - e.length, e.length) === e; }, t.prototype.accept = function(e) { if (e(this) && this.children) for (var n = 0, r = this.children; n < r.length; n++) { var i = r[n]; i.accept(e); } }, t.prototype.acceptVisitor = function(e) { this.accept(e.visitNode.bind(e)); }, t.prototype.adoptChild = function(e, n) { if (n === void 0 && (n = -1), e.parent && e.parent.children) { var r = e.parent.children.indexOf(e); r >= 0 && e.parent.children.splice(r, 1); } e.parent = this; var i = this.children; return i || (i = this.children = []), n !== -1 ? i.splice(n, 0, e) : i.push(e), e; }, t.prototype.attachTo = function(e, n) { return n === void 0 && (n = -1), e && e.adoptChild(this, n), this; }, t.prototype.collectIssues = function(e) { this.issues && e.push.apply(e, this.issues); }, t.prototype.addIssue = function(e) { this.issues || (this.issues = []), this.issues.push(e); }, t.prototype.hasIssue = function(e) { return Array.isArray(this.issues) && this.issues.some(function(n) { return n.getRule() === e; }); }, t.prototype.isErroneous = function(e) { return e === void 0 && (e = !1), this.issues && this.issues.length > 0 ? !0 : e && Array.isArray(this.children) && this.children.some(function(n) { return n.isErroneous(!0); }); }, t.prototype.setNode = function(e, n, r) { return r === void 0 && (r = -1), n ? (n.attachTo(this, r), this[e] = n, !0) : !1; }, t.prototype.addChild = function(e) { return e ? (this.children || (this.children = []), e.attachTo(this), this.updateOffsetAndLength(e), !0) : !1; }, t.prototype.updateOffsetAndLength = function(e) { (e.offset < this.offset || this.offset === -1) && (this.offset = e.offset); var n = e.end; (n > this.end || this.length === -1) && (this.length = n - this.offset); }, t.prototype.hasChildren = function() { return !!this.children && this.children.length > 0; }, t.prototype.getChildren = function() { return this.children ? this.children.slice(0) : []; }, t.prototype.getChild = function(e) { return this.children && e < this.children.length ? this.children[e] : null; }, t.prototype.addChildren = function(e) { for (var n = 0, r = e; n < r.length; n++) { var i = r[n]; this.addChild(i); } }, t.prototype.findFirstChildBeforeOffset = function(e) { if (this.children) { for (var n = null, r = this.children.length - 1; r >= 0; r--) if (n = this.children[r], n.offset <= e) return n; } return null; }, t.prototype.findChildAtOffset = function(e, n) { var r = this.findFirstChildBeforeOffset(e); return r && r.end >= e ? n && r.findChildAtOffset(e, !0) || r : null; }, t.prototype.encloses = function(e) { return this.offset <= e.offset && this.offset + this.length >= e.offset + e.length; }, t.prototype.getParent = function() { for (var e = this.parent; e instanceof _e; ) e = e.parent; return e; }, t.prototype.findParent = function(e) { for (var n = this; n && n.type !== e; ) n = n.parent; return n; }, t.prototype.findAParent = function() { for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; for (var r = this; r && !e.some(function(i) { return r.type === i; }); ) r = r.parent; return r; }, t.prototype.setData = function(e, n) { this.options || (this.options = {}), this.options[e] = n; }, t.prototype.getData = function(e) { return !this.options || !this.options.hasOwnProperty(e) ? null : this.options[e]; }, t; }(), _e = function(t) { U(e, t); function e(n, r) { r === void 0 && (r = -1); var i = t.call(this, -1, -1) || this; return i.attachTo(n, r), i.offset = -1, i.length = -1, i; } return e; }(V), Od = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.UnicodeRange; }, enumerable: !1, configurable: !0 }), e.prototype.setRangeStart = function(n) { return this.setNode("rangeStart", n); }, e.prototype.getRangeStart = function() { return this.rangeStart; }, e.prototype.setRangeEnd = function(n) { return this.setNode("rangeEnd", n); }, e.prototype.getRangeEnd = function() { return this.rangeEnd; }, e; }(V), Ue = function(t) { U(e, t); function e(n, r) { var i = t.call(this, n, r) || this; return i.isCustomProperty = !1, i; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Identifier; }, enumerable: !1, configurable: !0 }), e.prototype.containsInterpolation = function() { return this.hasChildren(); }, e; }(V), Ud = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Stylesheet; }, enumerable: !1, configurable: !0 }), e; }(V), ji = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Declarations; }, enumerable: !1, configurable: !0 }), e; }(V), ce = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return e.prototype.getDeclarations = function() { return this.declarations; }, e.prototype.setDeclarations = function(n) { return this.setNode("declarations", n); }, e; }(V), $t = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Ruleset; }, enumerable: !1, configurable: !0 }), e.prototype.getSelectors = function() { return this.selectors || (this.selectors = new _e(this)), this.selectors; }, e.prototype.isNested = function() { return !!this.parent && this.parent.findParent(v.Declarations) !== null; }, e; }(ce), Wn = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Selector; }, enumerable: !1, configurable: !0 }), e; }(V), Ht = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.SimpleSelector; }, enumerable: !1, configurable: !0 }), e; }(V); (function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.AtApplyRule; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e; })(V); var $i = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return e; }(V), Vd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.CustomPropertySet; }, enumerable: !1, configurable: !0 }), e; }(ce), Ze = function(t) { U(e, t); function e(n, r) { var i = t.call(this, n, r) || this; return i.property = null, i; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Declaration; }, enumerable: !1, configurable: !0 }), e.prototype.setProperty = function(n) { return this.setNode("property", n); }, e.prototype.getProperty = function() { return this.property; }, e.prototype.getFullPropertyName = function() { var n = this.property ? this.property.getName() : "unknown"; if (this.parent instanceof ji && this.parent.getParent() instanceof Rl) { var r = this.parent.getParent().getParent(); if (r instanceof e) return r.getFullPropertyName() + n; } return n; }, e.prototype.getNonPrefixedPropertyName = function() { var n = this.getFullPropertyName(); if (n && n.charAt(0) === "-") { var r = n.indexOf("-", 1); if (r !== -1) return n.substring(r + 1); } return n; }, e.prototype.setValue = function(n) { return this.setNode("value", n); }, e.prototype.getValue = function() { return this.value; }, e.prototype.setNestedProperties = function(n) { return this.setNode("nestedProperties", n); }, e.prototype.getNestedProperties = function() { return this.nestedProperties; }, e; }($i), Bd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.CustomPropertyDeclaration; }, enumerable: !1, configurable: !0 }), e.prototype.setPropertySet = function(n) { return this.setNode("propertySet", n); }, e.prototype.getPropertySet = function() { return this.propertySet; }, e; }(Ze), Hi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Property; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return Td(this.getText(), /[_\+]+$/); }, e.prototype.isCustomProperty = function() { return !!this.identifier && this.identifier.isCustomProperty; }, e; }(V), qd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Invocation; }, enumerable: !1, configurable: !0 }), e.prototype.getArguments = function() { return this.arguments || (this.arguments = new _e(this)), this.arguments; }, e; }(V), On = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Function; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e; }(qd), _r = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.FunctionParameter; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.setDefaultValue = function(n) { return this.setNode("defaultValue", n, 0); }, e.prototype.getDefaultValue = function() { return this.defaultValue; }, e; }(V), Qt = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.FunctionArgument; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.setValue = function(n) { return this.setNode("value", n, 0); }, e.prototype.getValue = function() { return this.value; }, e; }(V), jd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.If; }, enumerable: !1, configurable: !0 }), e.prototype.setExpression = function(n) { return this.setNode("expression", n, 0); }, e.prototype.setElseClause = function(n) { return this.setNode("elseClause", n); }, e; }(ce), $d = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.For; }, enumerable: !1, configurable: !0 }), e.prototype.setVariable = function(n) { return this.setNode("variable", n, 0); }, e; }(ce), Hd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Each; }, enumerable: !1, configurable: !0 }), e.prototype.getVariables = function() { return this.variables || (this.variables = new _e(this)), this.variables; }, e; }(ce), Gd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.While; }, enumerable: !1, configurable: !0 }), e; }(ce), Jd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Else; }, enumerable: !1, configurable: !0 }), e; }(ce), dr = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.FunctionDeclaration; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.getParameters = function() { return this.parameters || (this.parameters = new _e(this)), this.parameters; }, e; }(ce), Xd = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.ViewPort; }, enumerable: !1, configurable: !0 }), e; }(ce), _l = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.FontFace; }, enumerable: !1, configurable: !0 }), e; }(ce), Rl = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.NestedProperties; }, enumerable: !1, configurable: !0 }), e; }(ce), Fl = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Keyframe; }, enumerable: !1, configurable: !0 }), e.prototype.setKeyword = function(n) { return this.setNode("keyword", n, 0); }, e.prototype.getKeyword = function() { return this.keyword; }, e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e; }(ce), Ba = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.KeyframeSelector; }, enumerable: !1, configurable: !0 }), e; }(ce), Gi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Import; }, enumerable: !1, configurable: !0 }), e.prototype.setMedialist = function(n) { return n ? (n.attachTo(this), !0) : !1; }, e; }(V), Yd = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Use; }, enumerable: !1, configurable: !0 }), e.prototype.getParameters = function() { return this.parameters || (this.parameters = new _e(this)), this.parameters; }, e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e; }(V), Kd = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.ModuleConfiguration; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.setValue = function(n) { return this.setNode("value", n, 0); }, e.prototype.getValue = function() { return this.value; }, e; }(V), Qd = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Forward; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getMembers = function() { return this.members || (this.members = new _e(this)), this.members; }, e.prototype.getParameters = function() { return this.parameters || (this.parameters = new _e(this)), this.parameters; }, e; }(V), Zd = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.ForwardVisibility; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e; }(V), eu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Namespace; }, enumerable: !1, configurable: !0 }), e; }(V), El = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Media; }, enumerable: !1, configurable: !0 }), e; }(ce), vi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Supports; }, enumerable: !1, configurable: !0 }), e; }(ce), tu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Document; }, enumerable: !1, configurable: !0 }), e; }(ce), Dl = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return e.prototype.getMediums = function() { return this.mediums || (this.mediums = new _e(this)), this.mediums; }, e; }(V), Al = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MediaQuery; }, enumerable: !1, configurable: !0 }), e; }(V), nu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MediaCondition; }, enumerable: !1, configurable: !0 }), e; }(V), ru = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MediaFeature; }, enumerable: !1, configurable: !0 }), e; }(V), vn = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.SupportsCondition; }, enumerable: !1, configurable: !0 }), e; }(V), iu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Page; }, enumerable: !1, configurable: !0 }), e; }(ce), su = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.PageBoxMarginBox; }, enumerable: !1, configurable: !0 }), e; }(ce), Nl = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Expression; }, enumerable: !1, configurable: !0 }), e; }(V), Ji = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.BinaryExpression; }, enumerable: !1, configurable: !0 }), e.prototype.setLeft = function(n) { return this.setNode("left", n); }, e.prototype.getLeft = function() { return this.left; }, e.prototype.setRight = function(n) { return this.setNode("right", n); }, e.prototype.getRight = function() { return this.right; }, e.prototype.setOperator = function(n) { return this.setNode("operator", n); }, e.prototype.getOperator = function() { return this.operator; }, e; }(V), au = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Term; }, enumerable: !1, configurable: !0 }), e.prototype.setOperator = function(n) { return this.setNode("operator", n); }, e.prototype.getOperator = function() { return this.operator; }, e.prototype.setExpression = function(n) { return this.setNode("expression", n); }, e.prototype.getExpression = function() { return this.expression; }, e; }(V), ou = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.AttributeSelector; }, enumerable: !1, configurable: !0 }), e.prototype.setNamespacePrefix = function(n) { return this.setNode("namespacePrefix", n); }, e.prototype.getNamespacePrefix = function() { return this.namespacePrefix; }, e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.setOperator = function(n) { return this.setNode("operator", n); }, e.prototype.getOperator = function() { return this.operator; }, e.prototype.setValue = function(n) { return this.setNode("value", n); }, e.prototype.getValue = function() { return this.value; }, e; }(V); (function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Operator; }, enumerable: !1, configurable: !0 }), e; })(V); var Xi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.HexColorValue; }, enumerable: !1, configurable: !0 }), e; }(V), lu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.RatioValue; }, enumerable: !1, configurable: !0 }), e; }(V), cu = ".".charCodeAt(0), hu = "0".charCodeAt(0), du = "9".charCodeAt(0), Yi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.NumericValue; }, enumerable: !1, configurable: !0 }), e.prototype.getValue = function() { for (var n = this.getText(), r = 0, i, s = 0, a = n.length; s < a && (i = n.charCodeAt(s), hu <= i && i <= du || i === cu); s++) r += 1; return { value: n.substring(0, r), unit: r < n.length ? n.substring(r) : void 0 }; }, e; }(V), Rr = function(t) { U(e, t); function e(n, r) { var i = t.call(this, n, r) || this; return i.variable = null, i.value = null, i.needsSemicolon = !0, i; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.VariableDeclaration; }, enumerable: !1, configurable: !0 }), e.prototype.setVariable = function(n) { return n ? (n.attachTo(this), this.variable = n, !0) : !1; }, e.prototype.getVariable = function() { return this.variable; }, e.prototype.getName = function() { return this.variable ? this.variable.getName() : ""; }, e.prototype.setValue = function(n) { return n ? (n.attachTo(this), this.value = n, !0) : !1; }, e.prototype.getValue = function() { return this.value; }, e; }($i), yi = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Interpolation; }, enumerable: !1, configurable: !0 }), e; }(V), Ki = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.VariableName; }, enumerable: !1, configurable: !0 }), e.prototype.getName = function() { return this.getText(); }, e; }(V), Rn = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.ExtendsReference; }, enumerable: !1, configurable: !0 }), e.prototype.getSelectors = function() { return this.selectors || (this.selectors = new _e(this)), this.selectors; }, e; }(V), uu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MixinContentReference; }, enumerable: !1, configurable: !0 }), e.prototype.getArguments = function() { return this.arguments || (this.arguments = new _e(this)), this.arguments; }, e; }(V), pu = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MixinContentReference; }, enumerable: !1, configurable: !0 }), e.prototype.getParameters = function() { return this.parameters || (this.parameters = new _e(this)), this.parameters; }, e; }(ce), ur = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MixinReference; }, enumerable: !1, configurable: !0 }), e.prototype.getNamespaces = function() { return this.namespaces || (this.namespaces = new _e(this)), this.namespaces; }, e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.getArguments = function() { return this.arguments || (this.arguments = new _e(this)), this.arguments; }, e.prototype.setContent = function(n) { return this.setNode("content", n); }, e.prototype.getContent = function() { return this.content; }, e; }(V), Fn = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.MixinDeclaration; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e.prototype.getName = function() { return this.identifier ? this.identifier.getText() : ""; }, e.prototype.getParameters = function() { return this.parameters || (this.parameters = new _e(this)), this.parameters; }, e.prototype.setGuard = function(n) { return n && (n.attachTo(this), this.guard = n), !1; }, e; }(ce), Ml = function(t) { U(e, t); function e(n, r) { return t.call(this, n, r) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.UnknownAtRule; }, enumerable: !1, configurable: !0 }), e.prototype.setAtRuleName = function(n) { this.atRuleName = n; }, e.prototype.getAtRuleName = function() { return this.atRuleName; }, e; }(ce), fu = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.ListEntry; }, enumerable: !1, configurable: !0 }), e.prototype.setKey = function(n) { return this.setNode("key", n, 0); }, e.prototype.setValue = function(n) { return this.setNode("value", n, 1); }, e; }(V), mu = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return e.prototype.getConditions = function() { return this.conditions || (this.conditions = new _e(this)), this.conditions; }, e; }(V), gu = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return e.prototype.setVariable = function(n) { return this.setNode("variable", n); }, e; }(V), qa = function(t) { U(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return Object.defineProperty(e.prototype, "type", { get: function() { return v.Module; }, enumerable: !1, configurable: !0 }), e.prototype.setIdentifier = function(n) { return this.setNode("identifier", n, 0); }, e.prototype.getIdentifier = function() { return this.identifier; }, e; }(V), Le; (function(t) { t[t.Ignore = 1] = "Ignore", t[t.Warning = 2] = "Warning", t[t.Error = 4] = "Error"; })(Le || (Le = {})); var zl = function() { function t(e, n, r, i, s, a) { s === void 0 && (s = e.offset), a === void 0 && (a = e.length), this.node = e, this.rule = n, this.level = r, this.message = i || n.message, this.offset = s, this.length = a; } return t.prototype.getRule = function() { return this.rule; }, t.prototype.getLevel = function() { return this.level; }, t.prototype.getOffset = function() { return this.offset; }, t.prototype.getLength = function() { return this.length; }, t.prototype.getNode = function() { return this.node; }, t.prototype.getMessage = function() { return this.message; }, t; }(), bu = function() { function t() { this.entries = []; } return t.entries = function(e) { var n = new t(); return e.acceptVisitor(n), n.entries; }, t.prototype.visitNode = function(e) { return e.isErroneous() && e.collectIssues(this.entries), !0; }, t; }(); function vu(t, e) { let n; return e.length === 0 ? n = t : n = t.replace(/\{(\d+)\}/g, (r, i) => { let s = i[0]; return typeof e[s] < "u" ? e[s] : r; }), n; } function yu(t, e, ...n) { return vu(e, n); } function Ge(t) { return yu; } var te = Ge(), ne = function() { function t(e, n) { this.id = e, this.message = n; } return t; }(), C = { NumberExpected: new ne("css-numberexpected", te("expected.number", "number expected")), ConditionExpected: new ne("css-conditionexpected", te("expected.condt", "condition expected")), RuleOrSelectorExpected: new ne("css-ruleorselectorexpected", te("expected.ruleorselector", "at-rule or selector expected")), DotExpected: new ne("css-dotexpected", te("expected.dot", "dot expected")), ColonExpected: new ne("css-colonexpected", te("expected.colon", "colon expected")), SemiColonExpected: new ne("css-semicolonexpected", te("expected.semicolon", "semi-colon expected")), TermExpected: new ne("css-termexpected", te("expected.term", "term expected")), ExpressionExpected: new ne("css-expressionexpected", te("expected.expression", "expression expected")), OperatorExpected: new ne("css-operatorexpected", te("expected.operator", "operator expected")), IdentifierExpected: new ne("css-identifierexpected", te("expected.ident", "identifier expected")), PercentageExpected: new ne("css-percentageexpected", te("expected.percentage", "percentage expected")), URIOrStringExpected: new ne("css-uriorstringexpected", te("expected.uriorstring", "uri or string expected")), URIExpected: new ne("css-uriexpected", te("expected.uri", "URI expected")), VariableNameExpected: new ne("css-varnameexpected", te("expected.varname", "variable name expected")), VariableValueExpected: new ne("css-varvalueexpected", te("expected.varvalue", "variable value expected")), PropertyValueExpected: new ne("css-propertyvalueexpected", te("expected.propvalue", "property value expected")), LeftCurlyExpected: new ne("css-lcurlyexpected", te("expected.lcurly", "{ expected")), RightCurlyExpected: new ne("css-rcurlyexpected", te("expected.rcurly", "} expected")), LeftSquareBracketExpected: new ne("css-rbracketexpected", te("expected.lsquare", "[ expected")), RightSquareBracketExpected: new ne("css-lbracketexpected", te("expected.rsquare", "] expected")), LeftParenthesisExpected: new ne("css-lparentexpected", te("expected.lparen", "( expected")), RightParenthesisExpected: new ne("css-rparentexpected", te("expected.rparent", ") expected")), CommaExpected: new ne("css-commaexpected", te("expected.comma", "comma expected")), PageDirectiveOrDeclarationExpected: new ne("css-pagedirordeclexpected", te("expected.pagedirordecl", "page directive or declaraton expected")), UnknownAtRule: new ne("css-unknownatrule", te("unknown.atrule", "at-rule unknown")), UnknownKeyword: new ne("css-unknownkeyword", te("unknown.keyword", "unknown keyword")), SelectorExpected: new ne("css-selectorexpected", te("expected.selector", "selector expected")), StringLiteralExpected: new ne("css-stringliteralexpected", te("expected.stringliteral", "string literal expected")), WhitespaceExpected: new ne("css-whitespaceexpected", te("expected.whitespace", "whitespace expected")), MediaQueryExpected: new ne("css-mediaqueryexpected", te("expected.mediaquery", "media query expected")), IdentifierOrWildcardExpected: new ne("css-idorwildcardexpected", te("expected.idorwildcard", "identifier or wildcard expected")), WildcardExpected: new ne("css-wildcardexpected", te("expected.wildcard", "wildcard expected")), IdentifierOrVariableExpected: new ne("css-idorvarexpected", te("expected.idorvar", "identifier or variable expected")) }, ja; (function(t) { t.MIN_VALUE = -2147483648, t.MAX_VALUE = 2147483647; })(ja || (ja = {})); var pr; (function(t) { t.MIN_VALUE = 0, t.MAX_VALUE = 2147483647; })(pr || (pr = {})); var Ee; (function(t) { function e(r, i) { return r === Number.MAX_VALUE && (r = pr.MAX_VALUE), i === Number.MAX_VALUE && (i = pr.MAX_VALUE), { line: r, character: i }; } t.create = e; function n(r) { var i = r; return R.objectLiteral(i) && R.uinteger(i.line) && R.uinteger(i.character); } t.is = n; })(Ee || (Ee = {})); var ie; (function(t) { function e(r, i, s, a) { if (R.uinteger(r) && R.uinteger(i) && R.uinteger(s) && R.uinteger(a)) return { start: Ee.create(r, i), end: Ee.create(s, a) }; if (Ee.is(r) && Ee.is(i)) return { start: r, end: i }; throw new Error("Range#create called with invalid arguments[" + r + ", " + i + ", " + s + ", " + a + "]"); } t.create = e; function n(r) { var i = r; return R.objectLiteral(i) && Ee.is(i.start) && Ee.is(i.end); } t.is = n; })(ie || (ie = {})); var En; (function(t) { function e(r, i) { return { uri: r, range: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && ie.is(i.range) && (R.string(i.uri) || R.undefined(i.uri)); } t.is = n; })(En || (En = {})); var $a; (function(t) { function e(r, i, s, a) { return { targetUri: r, targetRange: i, targetSelectionRange: s, originSelectionRange: a }; } t.create = e; function n(r) { var i = r; return R.defined(i) && ie.is(i.targetRange) && R.string(i.targetUri) && (ie.is(i.targetSelectionRange) || R.undefined(i.targetSelectionRange)) && (ie.is(i.originSelectionRange) || R.undefined(i.originSelectionRange)); } t.is = n; })($a || ($a = {})); var wi; (function(t) { function e(r, i, s, a) { return { red: r, green: i, blue: s, alpha: a }; } t.create = e; function n(r) { var i = r; return R.numberRange(i.red, 0, 1) && R.numberRange(i.green, 0, 1) && R.numberRange(i.blue, 0, 1) && R.numberRange(i.alpha, 0, 1); } t.is = n; })(wi || (wi = {})); var Ha; (function(t) { function e(r, i) { return { range: r, color: i }; } t.create = e; function n(r) { var i = r; return ie.is(i.range) && wi.is(i.color); } t.is = n; })(Ha || (Ha = {})); var Ga; (function(t) { function e(r, i, s) { return { label: r, textEdit: i, additionalTextEdits: s }; } t.create = e; function n(r) { var i = r; return R.string(i.label) && (R.undefined(i.textEdit) || $.is(i)) && (R.undefined(i.additionalTextEdits) || R.typedArray(i.additionalTextEdits, $.is)); } t.is = n; })(Ga || (Ga = {})); var Ja; (function(t) { t.Comment = "comment", t.Imports = "imports", t.Region = "region"; })(Ja || (Ja = {})); var Xa; (function(t) { function e(r, i, s, a, o) { var l = { startLine: r, endLine: i }; return R.defined(s) && (l.startCharacter = s), R.defined(a) && (l.endCharacter = a), R.defined(o) && (l.kind = o), l; } t.create = e; function n(r) { var i = r; return R.uinteger(i.startLine) && R.uinteger(i.startLine) && (R.undefined(i.startCharacter) || R.uinteger(i.startCharacter)) && (R.undefined(i.endCharacter) || R.uinteger(i.endCharacter)) && (R.undefined(i.kind) || R.string(i.kind)); } t.is = n; })(Xa || (Xa = {})); var xi; (function(t) { function e(r, i) { return { location: r, message: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && En.is(i.location) && R.string(i.message); } t.is = n; })(xi || (xi = {})); var fr; (function(t) { t.Error = 1, t.Warning = 2, t.Information = 3, t.Hint = 4; })(fr || (fr = {})); var Ya; (function(t) { t.Unnecessary = 1, t.Deprecated = 2; })(Ya || (Ya = {})); var Ka; (function(t) { function e(n) { var r = n; return r != null && R.string(r.href); } t.is = e; })(Ka || (Ka = {})); var mr; (function(t) { function e(r, i, s, a, o, l) { var c = { range: r, message: i }; return R.defined(s) && (c.severity = s), R.defined(a) && (c.code = a), R.defined(o) && (c.source = o), R.defined(l) && (c.relatedInformation = l), c; } t.create = e; function n(r) { var i, s = r; return R.defined(s) && ie.is(s.range) && R.string(s.message) && (R.number(s.severity) || R.undefined(s.severity)) && (R.integer(s.code) || R.string(s.code) || R.undefined(s.code)) && (R.undefined(s.codeDescription) || R.string((i = s.codeDescription) === null || i === void 0 ? void 0 : i.href)) && (R.string(s.source) || R.undefined(s.source)) && (R.undefined(s.relatedInformation) || R.typedArray(s.relatedInformation, xi.is)); } t.is = n; })(mr || (mr = {})); var Zt; (function(t) { function e(r, i) { for (var s = [], a = 2; a < arguments.length; a++) s[a - 2] = arguments[a]; var o = { title: r, command: i }; return R.defined(s) && s.length > 0 && (o.arguments = s), o; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.string(i.title) && R.string(i.command); } t.is = n; })(Zt || (Zt = {})); var $; (function(t) { function e(s, a) { return { range: s, newText: a }; } t.replace = e; function n(s, a) { return { range: { start: s, end: s }, newText: a }; } t.insert = n; function r(s) { return { range: s, newText: "" }; } t.del = r; function i(s) { var a = s; return R.objectLiteral(a) && R.string(a.newText) && ie.is(a.range); } t.is = i; })($ || ($ = {})); var Gt; (function(t) { function e(r, i, s) { var a = { label: r }; return i !== void 0 && (a.needsConfirmation = i), s !== void 0 && (a.description = s), a; } t.create = e; function n(r) { var i = r; return i !== void 0 && R.objectLiteral(i) && R.string(i.label) && (R.boolean(i.needsConfirmation) || i.needsConfirmation === void 0) && (R.string(i.description) || i.description === void 0); } t.is = n; })(Gt || (Gt = {})); var Re; (function(t) { function e(n) { var r = n; return typeof r == "string"; } t.is = e; })(Re || (Re = {})); var mt; (function(t) { function e(s, a, o) { return { range: s, newText: a, annotationId: o }; } t.replace = e; function n(s, a, o) { return { range: { start: s, end: s }, newText: a, annotationId: o }; } t.insert = n; function r(s, a) { return { range: s, newText: "", annotationId: a }; } t.del = r; function i(s) { var a = s; return $.is(a) && (Gt.is(a.annotationId) || Re.is(a.annotationId)); } t.is = i; })(mt || (mt = {})); var Dn; (function(t) { function e(r, i) { return { textDocument: r, edits: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && gr.is(i.textDocument) && Array.isArray(i.edits); } t.is = n; })(Dn || (Dn = {})); var An; (function(t) { function e(r, i, s) { var a = { kind: "create", uri: r }; return i !== void 0 && (i.overwrite !== void 0 || i.ignoreIfExists !== void 0) && (a.options = i), s !== void 0 && (a.annotationId = s), a; } t.create = e; function n(r) { var i = r; return i && i.kind === "create" && R.string(i.uri) && (i.options === void 0 || (i.options.overwrite === void 0 || R.boolean(i.options.overwrite)) && (i.options.ignoreIfExists === void 0 || R.boolean(i.options.ignoreIfExists))) && (i.annotationId === void 0 || Re.is(i.annotationId)); } t.is = n; })(An || (An = {})); var Nn; (function(t) { function e(r, i, s, a) { var o = { kind: "rename", oldUri: r, newUri: i }; return s !== void 0 && (s.overwrite !== void 0 || s.ignoreIfExists !== void 0) && (o.options = s), a !== void 0 && (o.annotationId = a), o; } t.create = e; function n(r) { var i = r; return i && i.kind === "rename" && R.string(i.oldUri) && R.string(i.newUri) && (i.options === void 0 || (i.options.overwrite === void 0 || R.boolean(i.options.overwrite)) && (i.options.ignoreIfExists === void 0 || R.boolean(i.options.ignoreIfExists))) && (i.annotationId === void 0 || Re.is(i.annotationId)); } t.is = n; })(Nn || (Nn = {})); var Mn; (function(t) { function e(r, i, s) { var a = { kind: "delete", uri: r }; return i !== void 0 && (i.recursive !== void 0 || i.ignoreIfNotExists !== void 0) && (a.options = i), s !== void 0 && (a.annotationId = s), a; } t.create = e; function n(r) { var i = r; return i && i.kind === "delete" && R.string(i.uri) && (i.options === void 0 || (i.options.recursive === void 0 || R.boolean(i.options.recursive)) && (i.options.ignoreIfNotExists === void 0 || R.boolean(i.options.ignoreIfNotExists))) && (i.annotationId === void 0 || Re.is(i.annotationId)); } t.is = n; })(Mn || (Mn = {})); var Si; (function(t) { function e(n) { var r = n; return r && (r.changes !== void 0 || r.documentChanges !== void 0) && (r.documentChanges === void 0 || r.documentChanges.every(function(i) { return R.string(i.kind) ? An.is(i) || Nn.is(i) || Mn.is(i) : Dn.is(i); })); } t.is = e; })(Si || (Si = {})); var jn = function() { function t(e, n) { this.edits = e, this.changeAnnotations = n; } return t.prototype.insert = function(e, n, r) { var i, s; if (r === void 0 ? i = $.insert(e, n) : Re.is(r) ? (s = r, i = mt.insert(e, n, r)) : (this.assertChangeAnnotations(this.changeAnnotations), s = this.changeAnnotations.manage(r), i = mt.insert(e, n, s)), this.edits.push(i), s !== void 0) return s; }, t.prototype.replace = function(e, n, r) { var i, s; if (r === void 0 ? i = $.replace(e, n) : Re.is(r) ? (s = r, i = mt.replace(e, n, r)) : (this.assertChangeAnnotations(this.changeAnnotations), s = this.changeAnnotations.manage(r), i = mt.replace(e, n, s)), this.edits.push(i), s !== void 0) return s; }, t.prototype.delete = function(e, n) { var r, i; if (n === void 0 ? r = $.del(e) : Re.is(n) ? (i = n, r = mt.del(e, n)) : (this.assertChangeAnnotations(this.changeAnnotations), i = this.changeAnnotations.manage(n), r = mt.del(e, i)), this.edits.push(r), i !== void 0) return i; }, t.prototype.add = function(e) { this.edits.push(e); }, t.prototype.all = function() { return this.edits; }, t.prototype.clear = function() { this.edits.splice(0, this.edits.length); }, t.prototype.assertChangeAnnotations = function(e) { if (e === void 0) throw new Error("Text edit change is not configured to manage change annotations."); }, t; }(), Qa = function() { function t(e) { this._annotations = e === void 0 ? /* @__PURE__ */ Object.create(null) : e, this._counter = 0, this._size = 0; } return t.prototype.all = function() { return this._annotations; }, Object.defineProperty(t.prototype, "size", { get: function() { return this._size; }, enumerable: !1, configurable: !0 }), t.prototype.manage = function(e, n) { var r; if (Re.is(e) ? r = e : (r = this.nextId(), n = e), this._annotations[r] !== void 0) throw new Error("Id " + r + " is already in use."); if (n === void 0) throw new Error("No annotation provided for id " + r); return this._annotations[r] = n, this._size++, r; }, t.prototype.nextId = function() { return this._counter++, this._counter.toString(); }, t; }(); (function() { function t(e) { var n = this; this._textEditChanges = /* @__PURE__ */ Object.create(null), e !== void 0 ? (this._workspaceEdit = e, e.documentChanges ? (this._changeAnnotations = new Qa(e.changeAnnotations), e.changeAnnotations = this._changeAnnotations.all(), e.documentChanges.forEach(function(r) { if (Dn.is(r)) { var i = new jn(r.edits, n._changeAnnotations); n._textEditChanges[r.textDocument.uri] = i; } })) : e.changes && Object.keys(e.changes).forEach(function(r) { var i = new jn(e.changes[r]); n._textEditChanges[r] = i; })) : this._workspaceEdit = {}; } return Object.defineProperty(t.prototype, "edit", { get: function() { return this.initDocumentChanges(), this._changeAnnotations !== void 0 && (this._changeAnnotations.size === 0 ? this._workspaceEdit.changeAnnotations = void 0 : this._workspaceEdit.changeAnnotations = this._changeAnnotations.all()), this._workspaceEdit; }, enumerable: !1, configurable: !0 }), t.prototype.getTextEditChange = function(e) { if (gr.is(e)) { if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw new Error("Workspace edit is not configured for document changes."); var n = { uri: e.uri, version: e.version }, r = this._textEditChanges[n.uri]; if (!r) { var i = [], s = { textDocument: n, edits: i }; this._workspaceEdit.documentChanges.push(s), r = new jn(i, this._changeAnnotations), this._textEditChanges[n.uri] = r; } return r; } else { if (this.initChanges(), this._workspaceEdit.changes === void 0) throw new Error("Workspace edit is not configured for normal text edit changes."); var r = this._textEditChanges[e]; if (!r) { var i = []; this._workspaceEdit.changes[e] = i, r = new jn(i), this._textEditChanges[e] = r; } return r; } }, t.prototype.initDocumentChanges = function() { this._workspaceEdit.documentChanges === void 0 && this._workspaceEdit.changes === void 0 && (this._changeAnnotations = new Qa(), this._workspaceEdit.documentChanges = [], this._workspaceEdit.changeAnnotations = this._changeAnnotations.all()); }, t.prototype.initChanges = function() { this._workspaceEdit.documentChanges === void 0 && this._workspaceEdit.changes === void 0 && (this._workspaceEdit.changes = /* @__PURE__ */ Object.create(null)); }, t.prototype.createFile = function(e, n, r) { if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw new Error("Workspace edit is not configured for document changes."); var i; Gt.is(n) || Re.is(n) ? i = n : r = n; var s, a; if (i === void 0 ? s = An.create(e, r) : (a = Re.is(i) ? i : this._changeAnnotations.manage(i), s = An.create(e, r, a)), this._workspaceEdit.documentChanges.push(s), a !== void 0) return a; }, t.prototype.renameFile = function(e, n, r, i) { if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw new Error("Workspace edit is not configured for document changes."); var s; Gt.is(r) || Re.is(r) ? s = r : i = r; var a, o; if (s === void 0 ? a = Nn.create(e, n, i) : (o = Re.is(s) ? s : this._changeAnnotations.manage(s), a = Nn.create(e, n, i, o)), this._workspaceEdit.documentChanges.push(a), o !== void 0) return o; }, t.prototype.deleteFile = function(e, n, r) { if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw new Error("Workspace edit is not configured for document changes."); var i; Gt.is(n) || Re.is(n) ? i = n : r = n; var s, a; if (i === void 0 ? s = Mn.create(e, r) : (a = Re.is(i) ? i : this._changeAnnotations.manage(i), s = Mn.create(e, r, a)), this._workspaceEdit.documentChanges.push(s), a !== void 0) return a; }, t; })(); var Za; (function(t) { function e(r) { return { uri: r }; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.string(i.uri); } t.is = n; })(Za || (Za = {})); var Ci; (function(t) { function e(r, i) { return { uri: r, version: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.string(i.uri) && R.integer(i.version); } t.is = n; })(Ci || (Ci = {})); var gr; (function(t) { function e(r, i) { return { uri: r, version: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.string(i.uri) && (i.version === null || R.integer(i.version)); } t.is = n; })(gr || (gr = {})); var eo; (function(t) { function e(r, i, s, a) { return { uri: r, languageId: i, version: s, text: a }; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.string(i.uri) && R.string(i.languageId) && R.integer(i.version) && R.string(i.text); } t.is = n; })(eo || (eo = {})); var Ve; (function(t) { t.PlainText = "plaintext", t.Markdown = "markdown"; })(Ve || (Ve = {})); (function(t) { function e(n) { var r = n; return r === t.PlainText || r === t.Markdown; } t.is = e; })(Ve || (Ve = {})); var ki; (function(t) { function e(n) { var r = n; return R.objectLiteral(n) && Ve.is(r.kind) && R.string(r.value); } t.is = e; })(ki || (ki = {})); var j; (function(t) { t.Text = 1, t.Method = 2, t.Function = 3, t.Constructor = 4, t.Field = 5, t.Variable = 6, t.Class = 7, t.Interface = 8, t.Module = 9, t.Property = 10, t.Unit = 11, t.Value = 12, t.Enum = 13, t.Keyword = 14, t.Snippet = 15, t.Color = 16, t.File = 17, t.Reference = 18, t.Folder = 19, t.EnumMember = 20, t.Constant = 21, t.Struct = 22, t.Event = 23, t.Operator = 24, t.TypeParameter = 25; })(j || (j = {})); var ze; (function(t) { t.PlainText = 1, t.Snippet = 2; })(ze || (ze = {})); var Et; (function(t) { t.Deprecated = 1; })(Et || (Et = {})); var to; (function(t) { function e(r, i, s) { return { newText: r, insert: i, replace: s }; } t.create = e; function n(r) { var i = r; return i && R.string(i.newText) && ie.is(i.insert) && ie.is(i.replace); } t.is = n; })(to || (to = {})); var no; (function(t) { t.asIs = 1, t.adjustIndentation = 2; })(no || (no = {})); var ro; (function(t) { function e(n) { return { label: n }; } t.create = e; })(ro || (ro = {})); var io; (function(t) { function e(n, r) { return { items: n || [], isIncomplete: !!r }; } t.create = e; })(io || (io = {})); var br; (function(t) { function e(r) { return r.replace(/[\\`*_{}[\]()#+\-.!]/g, "\\$&"); } t.fromPlainText = e; function n(r) { var i = r; return R.string(i) || R.objectLiteral(i) && R.string(i.language) && R.string(i.value); } t.is = n; })(br || (br = {})); var so; (function(t) { function e(n) { var r = n; return !!r && R.objectLiteral(r) && (ki.is(r.contents) || br.is(r.contents) || R.typedArray(r.contents, br.is)) && (n.range === void 0 || ie.is(n.range)); } t.is = e; })(so || (so = {})); var ao; (function(t) { function e(n, r) { return r ? { label: n, documentation: r } : { label: n }; } t.create = e; })(ao || (ao = {})); var oo; (function(t) { function e(n, r) { for (var i = [], s = 2; s < arguments.length; s++) i[s - 2] = arguments[s]; var a = { label: n }; return R.defined(r) && (a.documentation = r), R.defined(i) ? a.parameters = i : a.parameters = [], a; } t.create = e; })(oo || (oo = {})); var Bt; (function(t) { t.Text = 1, t.Read = 2, t.Write = 3; })(Bt || (Bt = {})); var lo; (function(t) { function e(n, r) { var i = { range: n }; return R.number(r) && (i.kind = r), i; } t.create = e; })(lo || (lo = {})); var Dt; (function(t) { t.File = 1, t.Module = 2, t.Namespace = 3, t.Package = 4, t.Class = 5, t.Method = 6, t.Property = 7, t.Field = 8, t.Constructor = 9, t.Enum = 10, t.Interface = 11, t.Function = 12, t.Variable = 13, t.Constant = 14, t.String = 15, t.Number = 16, t.Boolean = 17, t.Array = 18, t.Object = 19, t.Key = 20, t.Null = 21, t.EnumMember = 22, t.Struct = 23, t.Event = 24, t.Operator = 25, t.TypeParameter = 26; })(Dt || (Dt = {})); var co; (function(t) { t.Deprecated = 1; })(co || (co = {})); var ho; (function(t) { function e(n, r, i, s, a) { var o = { name: n, kind: r, location: { uri: s, range: i } }; return a && (o.containerName = a), o; } t.create = e; })(ho || (ho = {})); var uo; (function(t) { function e(r, i, s, a, o, l) { var c = { name: r, detail: i, kind: s, range: a, selectionRange: o }; return l !== void 0 && (c.children = l), c; } t.create = e; function n(r) { var i = r; return i && R.string(i.name) && R.number(i.kind) && ie.is(i.range) && ie.is(i.selectionRange) && (i.detail === void 0 || R.string(i.detail)) && (i.deprecated === void 0 || R.boolean(i.deprecated)) && (i.children === void 0 || Array.isArray(i.children)) && (i.tags === void 0 || Array.isArray(i.tags)); } t.is = n; })(uo || (uo = {})); var _i; (function(t) { t.Empty = "", t.QuickFix = "quickfix", t.Refactor = "refactor", t.RefactorExtract = "refactor.extract", t.RefactorInline = "refactor.inline", t.RefactorRewrite = "refactor.rewrite", t.Source = "source", t.SourceOrganizeImports = "source.organizeImports", t.SourceFixAll = "source.fixAll"; })(_i || (_i = {})); var po; (function(t) { function e(r, i) { var s = { diagnostics: r }; return i != null && (s.only = i), s; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.typedArray(i.diagnostics, mr.is) && (i.only === void 0 || R.typedArray(i.only, R.string)); } t.is = n; })(po || (po = {})); var Ri; (function(t) { function e(r, i, s) { var a = { title: r }, o = !0; return typeof i == "string" ? (o = !1, a.kind = i) : Zt.is(i) ? a.command = i : a.edit = i, o && s !== void 0 && (a.kind = s), a; } t.create = e; function n(r) { var i = r; return i && R.string(i.title) && (i.diagnostics === void 0 || R.typedArray(i.diagnostics, mr.is)) && (i.kind === void 0 || R.string(i.kind)) && (i.edit !== void 0 || i.command !== void 0) && (i.command === void 0 || Zt.is(i.command)) && (i.isPreferred === void 0 || R.boolean(i.isPreferred)) && (i.edit === void 0 || Si.is(i.edit)); } t.is = n; })(Ri || (Ri = {})); var fo; (function(t) { function e(r, i) { var s = { range: r }; return R.defined(i) && (s.data = i), s; } t.create = e; function n(r) { var i = r; return R.defined(i) && ie.is(i.range) && (R.undefined(i.command) || Zt.is(i.command)); } t.is = n; })(fo || (fo = {})); var mo; (function(t) { function e(r, i) { return { tabSize: r, insertSpaces: i }; } t.create = e; function n(r) { var i = r; return R.defined(i) && R.uinteger(i.tabSize) && R.boolean(i.insertSpaces); } t.is = n; })(mo || (mo = {})); var go; (function(t) { function e(r, i, s) { return { range: r, target: i, data: s }; } t.create = e; function n(r) { var i = r; return R.defined(i) && ie.is(i.range) && (R.undefined(i.target) || R.string(i.target)); } t.is = n; })(go || (go = {})); var vr; (function(t) { function e(r, i) { return { range: r, parent: i }; } t.create = e; function n(r) { var i = r; return i !== void 0 && ie.is(i.range) && (i.parent === void 0 || t.is(i.parent)); } t.is = n; })(vr || (vr = {})); var bo; (function(t) { function e(s, a, o, l) { return new wu(s, a, o, l); } t.create = e; function n(s) { var a = s; return !!(R.defined(a) && R.string(a.uri) && (R.undefined(a.languageId) || R.string(a.languageId)) && R.uinteger(a.lineCount) && R.func(a.getText) && R.func(a.positionAt) && R.func(a.offsetAt)); } t.is = n; function r(s, a) { for (var o = s.getText(), l = i(a, function(g, b) { var y = g.range.start.line - b.range.start.line; return y === 0 ? g.range.start.character - b.range.start.character : y; }), c = o.length, h = l.length - 1; h >= 0; h--) { var u = l[h], f = s.offsetAt(u.range.start), m = s.offsetAt(u.range.end); if (m <= c) o = o.substring(0, f) + u.newText + o.substring(m, o.length); else throw new Error("Overlapping edit"); c = f; } return o; } t.applyEdits = r; function i(s, a) { if (s.length <= 1) return s; var o = s.length / 2 | 0, l = s.slice(0, o), c = s.slice(o); i(l, a), i(c, a); for (var h = 0, u = 0, f = 0; h < l.length && u < c.length; ) { var m = a(l[h], c[u]); m <= 0 ? s[f++] = l[h++] : s[f++] = c[u++]; } for (; h < l.length; ) s[f++] = l[h++]; for (; u < c.length; ) s[f++] = c[u++]; return s; } })(bo || (bo = {})); var wu = function() { function t(e, n, r, i) { this._uri = e, this._languageId = n, this._version = r, this._content = i, this._lineOffsets = void 0; } return Object.defineProperty(t.prototype, "uri", { get: function() { return this._uri; }, enumerable: !1, configurable: !0 }), Object.defineProperty(t.prototype, "languageId", { get: function() { return this._languageId; }, enumerable: !1, configurable: !0 }), Object.defineProperty(t.prototype, "version", { get: function() { return this._version; }, enumerable: !1, configurable: !0 }), t.prototype.getText = function(e) { if (e) { var n = this.offsetAt(e.start), r = this.offsetAt(e.end); return this._content.substring(n, r); } return this._content; }, t.prototype.update = function(e, n) { this._content = e.text, this._version = n, this._lineOffsets = void 0; }, t.prototype.getLineOffsets = function() { if (this._lineOffsets === void 0) { for (var e = [], n = this._content, r = !0, i = 0; i < n.length; i++) { r && (e.push(i), r = !1); var s = n.charAt(i); r = s === "\r" || s === ` `, s === "\r" && i + 1 < n.length && n.charAt(i + 1) === ` ` && i++; } r && n.length > 0 && e.push(n.length), this._lineOffsets = e; } return this._lineOffsets; }, t.prototype.positionAt = function(e) { e = Math.max(Math.min(e, this._content.length), 0); var n = this.getLineOffsets(), r = 0, i = n.length; if (i === 0) return Ee.create(0, e); for (; r < i; ) { var s = Math.floor((r + i) / 2); n[s] > e ? i = s : r = s + 1; } var a = r - 1; return Ee.create(a, e - n[a]); }, t.prototype.offsetAt = function(e) { var n = this.getLineOffsets(); if (e.line >= n.length) return this._content.length; if (e.line < 0) return 0; var r = n[e.line], i = e.line + 1 < n.length ? n[e.line + 1] : this._content.length; return Math.max(Math.min(r + e.character, i), r); }, Object.defineProperty(t.prototype, "lineCount", { get: function() { return this.getLineOffsets().length; }, enumerable: !1, configurable: !0 }), t; }(), R; (function(t) { var e = Object.prototype.toString; function n(m) { return typeof m < "u"; } t.defined = n; function r(m) { return typeof m > "u"; } t.undefined = r; function i(m) { return m === !0 || m === !1; } t.boolean = i; function s(m) { return e.call(m) === "[object String]"; } t.string = s; function a(m) { return e.call(m) === "[object Number]"; } t.number = a; function o(m, g, b) { return e.call(m) === "[object Number]" && g <= m && m <= b; } t.numberRange = o; function l(m) { return e.call(m) === "[object Number]" && -2147483648 <= m && m <= 2147483647; } t.integer = l; function c(m) { return e.call(m) === "[object Number]" && 0 <= m && m <= 2147483647; } t.uinteger = c; function h(m) { return e.call(m) === "[object Function]"; } t.func = h; function u(m) { return m !== null && typeof m == "object"; } t.objectLiteral = u; function f(m, g) { return Array.isArray(m) && m.every(g); } t.typedArray = f; })(R || (R = {})); var yr = class { constructor(t, e, n, r) { this._uri = t, this._languageId = e, this._version = n, this._content = r, this._lineOffsets = void 0; } get uri() { return this._uri; } get languageId() { return this._languageId; } get version() { return this._version; } getText(t) { if (t) { const e = this.offsetAt(t.start), n = this.offsetAt(t.end); return this._content.substring(e, n); } return this._content; } update(t, e) { for (let n of t) if (yr.isIncremental(n)) { const r = Ll(n.range), i = this.offsetAt(r.start), s = this.offsetAt(r.end); this._content = this._content.substring(0, i) + n.text + this._content.substring(s, this._content.length); const a = Math.max(r.start.line, 0), o = Math.max(r.end.line, 0); let l = this._lineOffsets; const c = vo(n.text, !1, i); if (o - a === c.length) for (let u = 0, f = c.length; u < f; u++) l[u + a + 1] = c[u]; else c.length < 1e4 ? l.splice(a + 1, o - a, ...c) : this._lineOffsets = l = l.slice(0, a + 1).concat(c, l.slice(o + 1)); const h = n.text.length - (s - i); if (h !== 0) for (let u = a + 1 + c.length, f = l.length; u < f; u++) l[u] = l[u] + h; } else if (yr.isFull(n)) this._content = n.text, this._lineOffsets = void 0; else throw new Error("Unknown change event received"); this._version = e; } getLineOffsets() { return this._lineOffsets === void 0 && (this._lineOffsets = vo(this._content, !0)), this._lineOffsets; } positionAt(t) { t = Math.max(Math.min(t, this._content.length), 0); let e = this.getLineOffsets(), n = 0, r = e.length; if (r === 0) return { line: 0, character: t }; for (; n < r; ) { let s = Math.floor((n + r) / 2); e[s] > t ? r = s : n = s + 1; } let i = n - 1; return { line: i, character: t - e[i] }; } offsetAt(t) { let e = this.getLineOffsets(); if (t.line >= e.length) return this._content.length; if (t.line < 0) return 0; let n = e[t.line], r = t.line + 1 < e.length ? e[t.line + 1] : this._content.length; return Math.max(Math.min(n + t.character, r), n); } get lineCount() { return this.getLineOffsets().length; } static isIncremental(t) { let e = t; return e != null && typeof e.text == "string" && e.range !== void 0 && (e.rangeLength === void 0 || typeof e.rangeLength == "number"); } static isFull(t) { let e = t; return e != null && typeof e.text == "string" && e.range === void 0 && e.rangeLength === void 0; } }, Fi; (function(t) { function e(i, s, a, o) { return new yr(i, s, a, o); } t.create = e; function n(i, s, a) { if (i instanceof yr) return i.update(s, a), i; throw new Error("TextDocument.update: document must be created by TextDocument.create"); } t.update = n; function r(i, s) { let a = i.getText(), o = Ei(s.map(xu), (h, u) => { let f = h.range.start.line - u.range.start.line; return f === 0 ? h.range.start.character - u.range.start.character : f; }), l = 0; const c = []; for (const h of o) { let u = i.offsetAt(h.range.start); if (u < l) throw new Error("Overlapping edit"); u > l && c.push(a.substring(l, u)), h.newText.length && c.push(h.newText), l = i.offsetAt(h.range.end); } return c.push(a.substr(l)), c.join(""); } t.applyEdits = r; })(Fi || (Fi = {})); function Ei(t, e) { if (t.length <= 1) return t; const n = t.length / 2 | 0, r = t.slice(0, n), i = t.slice(n); Ei(r, e), Ei(i, e); let s = 0, a = 0, o = 0; for (; s < r.length && a < i.length; ) e(r[s], i[a]) <= 0 ? t[o++] = r[s++] : t[o++] = i[a++]; for (; s < r.length; ) t[o++] = r[s++]; for (; a < i.length; ) t[o++] = i[a++]; return t; } function vo(t, e, n = 0) { const r = e ? [n] : []; for (let i = 0; i < t.length; i++) { let s = t.charCodeAt(i); (s === 13 || s === 10) && (s === 13 && i + 1 < t.length && t.charCodeAt(i + 1) === 10 && i++, r.push(n + i + 1)); } return r; } function Ll(t) { const e = t.start, n = t.end; return e.line > n.line || e.line === n.line && e.character > n.character ? { start: n, end: e } : t; } function xu(t) { const e = Ll(t.range); return e !== t.range ? { newText: t.newText, range: e } : t; } var yo; (function(t) { t.LATEST = { textDocument: { completion: { completionItem: { documentationFormat: [Ve.Markdown, Ve.PlainText] } }, hover: { contentFormat: [Ve.Markdown, Ve.PlainText] } } }; })(yo || (yo = {})); var zn; (function(t) { t[t.Unknown = 0] = "Unknown", t[t.File = 1] = "File", t[t.Directory = 2] = "Directory", t[t.SymbolicLink = 64] = "SymbolicLink"; })(zn || (zn = {})); var wo = { E: "Edge", FF: "Firefox", S: "Safari", C: "Chrome", IE: "IE", O: "Opera" }; function Pl(t) { switch (t) { case "experimental": return `⚠️ Property is experimental. Be cautious when using it.️ `; case "nonstandard": return `🚨️ Property is nonstandard. Avoid using it. `; case "obsolete": return `🚨️️️ Property is obsolete. Avoid using it. `; default: return ""; } } function bt(t, e, n) { var r; if (e ? r = { kind: "markdown", value: Cu(t, n) } : r = { kind: "plaintext", value: Su(t, n) }, r.value !== "") return r; } function $n(t) { return t = t.replace(/[\\`*_{}[\]()#+\-.!]/g, "\\$&"), t.replace(//g, ">"); } function Su(t, e) { if (!t.description || t.description === "") return ""; if (typeof t.description != "string") return t.description.value; var n = ""; if ((e == null ? void 0 : e.documentation) !== !1) { t.status && (n += Pl(t.status)), n += t.description; var r = Il(t.browsers); r && (n += ` (` + r + ")"), "syntax" in t && (n += ` Syntax: `.concat(t.syntax)); } return t.references && t.references.length > 0 && (e == null ? void 0 : e.references) !== !1 && (n.length > 0 && (n += ` `), n += t.references.map(function(i) { return "".concat(i.name, ": ").concat(i.url); }).join(" | ")), n; } function Cu(t, e) { if (!t.description || t.description === "") return ""; var n = ""; if ((e == null ? void 0 : e.documentation) !== !1) { t.status && (n += Pl(t.status)), typeof t.description == "string" ? n += $n(t.description) : n += t.description.kind === Ve.Markdown ? t.description.value : $n(t.description.value); var r = Il(t.browsers); r && (n += ` (` + $n(r) + ")"), "syntax" in t && t.syntax && (n += ` Syntax: `.concat($n(t.syntax))); } return t.references && t.references.length > 0 && (e == null ? void 0 : e.references) !== !1 && (n.length > 0 && (n += ` `), n += t.references.map(function(i) { return "[".concat(i.name, "](").concat(i.url, ")"); }).join(" | ")), n; } function Il(t) { return t === void 0 && (t = []), t.length === 0 ? null : t.map(function(e) { var n = "", r = e.match(/([A-Z]+)(\d+)?/), i = r[1], s = r[2]; return i in wo && (n += wo[i]), s && (n += " " + s), n; }).join(", "); } var dn = Ge(), ku = [ { func: "rgb($red, $green, $blue)", desc: dn("css.builtin.rgb", "Creates a Color from red, green, and blue values.") }, { func: "rgba($red, $green, $blue, $alpha)", desc: dn("css.builtin.rgba", "Creates a Color from red, green, blue, and alpha values.") }, { func: "hsl($hue, $saturation, $lightness)", desc: dn("css.builtin.hsl", "Creates a Color from hue, saturation, and lightness values.") }, { func: "hsla($hue, $saturation, $lightness, $alpha)", desc: dn("css.builtin.hsla", "Creates a Color from hue, saturation, lightness, and alpha values.") }, { func: "hwb($hue $white $black)", desc: dn("css.builtin.hwb", "Creates a Color from hue, white and black.") } ], wr = { aliceblue: "#f0f8ff", antiquewhite: "#faebd7", aqua: "#00ffff", aquamarine: "#7fffd4", azure: "#f0ffff", beige: "#f5f5dc", bisque: "#ffe4c4", black: "#000000", blanchedalmond: "#ffebcd", blue: "#0000ff", blueviolet: "#8a2be2", brown: "#a52a2a", burlywood: "#deb887", cadetblue: "#5f9ea0", chartreuse: "#7fff00", chocolate: "#d2691e", coral: "#ff7f50", cornflowerblue: "#6495ed", cornsilk: "#fff8dc", crimson: "#dc143c", cyan: "#00ffff", darkblue: "#00008b", darkcyan: "#008b8b", darkgoldenrod: "#b8860b", darkgray: "#a9a9a9", darkgrey: "#a9a9a9", darkgreen: "#006400", darkkhaki: "#bdb76b", darkmagenta: "#8b008b", darkolivegreen: "#556b2f", darkorange: "#ff8c00", darkorchid: "#9932cc", darkred: "#8b0000", darksalmon: "#e9967a", darkseagreen: "#8fbc8f", darkslateblue: "#483d8b", darkslategray: "#2f4f4f", darkslategrey: "#2f4f4f", darkturquoise: "#00ced1", darkviolet: "#9400d3", deeppink: "#ff1493", deepskyblue: "#00bfff", dimgray: "#696969", dimgrey: "#696969", dodgerblue: "#1e90ff", firebrick: "#b22222", floralwhite: "#fffaf0", forestgreen: "#228b22", fuchsia: "#ff00ff", gainsboro: "#dcdcdc", ghostwhite: "#f8f8ff", gold: "#ffd700", goldenrod: "#daa520", gray: "#808080", grey: "#808080", green: "#008000", greenyellow: "#adff2f", honeydew: "#f0fff0", hotpink: "#ff69b4", indianred: "#cd5c5c", indigo: "#4b0082", ivory: "#fffff0", khaki: "#f0e68c", lavender: "#e6e6fa", lavenderblush: "#fff0f5", lawngreen: "#7cfc00", lemonchiffon: "#fffacd", lightblue: "#add8e6", lightcoral: "#f08080", lightcyan: "#e0ffff", lightgoldenrodyellow: "#fafad2", lightgray: "#d3d3d3", lightgrey: "#d3d3d3", lightgreen: "#90ee90", lightpink: "#ffb6c1", lightsalmon: "#ffa07a", lightseagreen: "#20b2aa", lightskyblue: "#87cefa", lightslategray: "#778899", lightslategrey: "#778899", lightsteelblue: "#b0c4de", lightyellow: "#ffffe0", lime: "#00ff00", limegreen: "#32cd32", linen: "#faf0e6", magenta: "#ff00ff", maroon: "#800000", mediumaquamarine: "#66cdaa", mediumblue: "#0000cd", mediumorchid: "#ba55d3", mediumpurple: "#9370d8", mediumseagreen: "#3cb371", mediumslateblue: "#7b68ee", mediumspringgreen: "#00fa9a", mediumturquoise: "#48d1cc", mediumvioletred: "#c71585", midnightblue: "#191970", mintcream: "#f5fffa", mistyrose: "#ffe4e1", moccasin: "#ffe4b5", navajowhite: "#ffdead", navy: "#000080", oldlace: "#fdf5e6", olive: "#808000", olivedrab: "#6b8e23", orange: "#ffa500", orangered: "#ff4500", orchid: "#da70d6", palegoldenrod: "#eee8aa", palegreen: "#98fb98", paleturquoise: "#afeeee", palevioletred: "#d87093", papayawhip: "#ffefd5", peachpuff: "#ffdab9", peru: "#cd853f", pink: "#ffc0cb", plum: "#dda0dd", powderblue: "#b0e0e6", purple: "#800080", red: "#ff0000", rebeccapurple: "#663399", rosybrown: "#bc8f8f", royalblue: "#4169e1", saddlebrown: "#8b4513", salmon: "#fa8072", sandybrown: "#f4a460", seagreen: "#2e8b57", seashell: "#fff5ee", sienna: "#a0522d", silver: "#c0c0c0", skyblue: "#87ceeb", slateblue: "#6a5acd", slategray: "#708090", slategrey: "#708090", snow: "#fffafa", springgreen: "#00ff7f", steelblue: "#4682b4", tan: "#d2b48c", teal: "#008080", thistle: "#d8bfd8", tomato: "#ff6347", turquoise: "#40e0d0", violet: "#ee82ee", wheat: "#f5deb3", white: "#ffffff", whitesmoke: "#f5f5f5", yellow: "#ffff00", yellowgreen: "#9acd32" }, xo = { currentColor: "The value of the 'color' property. The computed value of the 'currentColor' keyword is the computed value of the 'color' property. If the 'currentColor' keyword is set on the 'color' property itself, it is treated as 'color:inherit' at parse time.", transparent: "Fully transparent. This keyword can be considered a shorthand for rgba(0,0,0,0) which is its computed value." }; function pt(t, e) { var n = t.getText(), r = n.match(/^([-+]?[0-9]*\.?[0-9]+)(%?)$/); if (r) { r[2] && (e = 100); var i = parseFloat(r[1]) / e; if (i >= 0 && i <= 1) return i; } throw new Error(); } function So(t) { var e = t.getText(), n = e.match(/^([-+]?[0-9]*\.?[0-9]+)(deg|rad|grad|turn)?$/); if (n) switch (n[2]) { case "deg": return parseFloat(e) % 360; case "rad": return parseFloat(e) * 180 / Math.PI % 360; case "grad": return parseFloat(e) * 0.9 % 360; case "turn": return parseFloat(e) * 360 % 360; default: if (typeof n[2] > "u") return parseFloat(e) % 360; } throw new Error(); } function _u(t) { var e = t.getName(); return e ? /^(rgb|rgba|hsl|hsla|hwb)$/gi.test(e) : !1; } var Co = 48, Ru = 57, Fu = 65, Hn = 97, Eu = 102; function ue(t) { return t < Co ? 0 : t <= Ru ? t - Co : (t < Hn && (t += Hn - Fu), t >= Hn && t <= Eu ? t - Hn + 10 : 0); } function ko(t) { if (t[0] !== "#") return null; switch (t.length) { case 4: return { red: ue(t.charCodeAt(1)) * 17 / 255, green: ue(t.charCodeAt(2)) * 17 / 255, blue: ue(t.charCodeAt(3)) * 17 / 255, alpha: 1 }; case 5: return { red: ue(t.charCodeAt(1)) * 17 / 255, green: ue(t.charCodeAt(2)) * 17 / 255, blue: ue(t.charCodeAt(3)) * 17 / 255, alpha: ue(t.charCodeAt(4)) * 17 / 255 }; case 7: return { red: (ue(t.charCodeAt(1)) * 16 + ue(t.charCodeAt(2))) / 255, green: (ue(t.charCodeAt(3)) * 16 + ue(t.charCodeAt(4))) / 255, blue: (ue(t.charCodeAt(5)) * 16 + ue(t.charCodeAt(6))) / 255, alpha: 1 }; case 9: return { red: (ue(t.charCodeAt(1)) * 16 + ue(t.charCodeAt(2))) / 255, green: (ue(t.charCodeAt(3)) * 16 + ue(t.charCodeAt(4))) / 255, blue: (ue(t.charCodeAt(5)) * 16 + ue(t.charCodeAt(6))) / 255, alpha: (ue(t.charCodeAt(7)) * 16 + ue(t.charCodeAt(8))) / 255 }; } return null; } function Tl(t, e, n, r) { if (r === void 0 && (r = 1), t = t / 60, e === 0) return { red: n, green: n, blue: n, alpha: r }; var i = function(o, l, c) { for (; c < 0; ) c += 6; for (; c >= 6; ) c -= 6; return c < 1 ? (l - o) * c + o : c < 3 ? l : c < 4 ? (l - o) * (4 - c) + o : o; }, s = n <= 0.5 ? n * (e + 1) : n + e - n * e, a = n * 2 - s; return { red: i(a, s, t + 2), green: i(a, s, t), blue: i(a, s, t - 2), alpha: r }; } function Wl(t) { var e = t.red, n = t.green, r = t.blue, i = t.alpha, s = Math.max(e, n, r), a = Math.min(e, n, r), o = 0, l = 0, c = (a + s) / 2, h = s - a; if (h > 0) { switch (l = Math.min(c <= 0.5 ? h / (2 * c) : h / (2 - 2 * c), 1), s) { case e: o = (n - r) / h + (n < r ? 6 : 0); break; case n: o = (r - e) / h + 2; break; case r: o = (e - n) / h + 4; break; } o *= 60, o = Math.round(o); } return { h: o, s: l, l: c, a: i }; } function Du(t, e, n, r) { if (r === void 0 && (r = 1), e + n >= 1) { var i = e / (e + n); return { red: i, green: i, blue: i, alpha: r }; } var s = Tl(t, 1, 0.5, r), a = s.red; a *= 1 - e - n, a += e; var o = s.green; o *= 1 - e - n, o += e; var l = s.blue; return l *= 1 - e - n, l += e, { red: a, green: o, blue: l, alpha: r }; } function Au(t) { var e = Wl(t), n = Math.min(t.red, t.green, t.blue), r = 1 - Math.max(t.red, t.green, t.blue); return { h: e.h, w: n, b: r, a: e.a }; } function Nu(t) { if (t.type === v.HexColorValue) { var e = t.getText(); return ko(e); } else if (t.type === v.Function) { var n = t, r = n.getName(), i = n.getArguments().getChildren(); if (i.length === 1) { var s = i[0].getChildren(); if (s.length === 1 && s[0].type === v.Expression && (i = s[0].getChildren(), i.length === 3)) { var a = i[2]; if (a instanceof Ji) { var o = a.getLeft(), l = a.getRight(), c = a.getOperator(); o && l && c && c.matches("/") && (i = [i[0], i[1], o, l]); } } } if (!r || i.length < 3 || i.length > 4) return null; try { var h = i.length === 4 ? pt(i[3], 1) : 1; if (r === "rgb" || r === "rgba") return { red: pt(i[0], 255), green: pt(i[1], 255), blue: pt(i[2], 255), alpha: h }; if (r === "hsl" || r === "hsla") { var u = So(i[0]), f = pt(i[1], 100), m = pt(i[2], 100); return Tl(u, f, m, h); } else if (r === "hwb") { var u = So(i[0]), g = pt(i[1], 100), b = pt(i[2], 100); return Du(u, g, b, h); } } catch { return null; } } else if (t.type === v.Identifier) { if (t.parent && t.parent.type !== v.Term) return null; var y = t.parent; if (y && y.parent && y.parent.type === v.BinaryExpression) { var k = y.parent; if (k.parent && k.parent.type === v.ListEntry && k.parent.key === k) return null; } var w = t.getText().toLowerCase(); if (w === "none") return null; var S = wr[w]; if (S) return ko(S); } return null; } var _o = { bottom: "Computes to ‘100%’ for the vertical position if one or two values are given, otherwise specifies the bottom edge as the origin for the next offset.", center: "Computes to ‘50%’ (‘left 50%’) for the horizontal position if the horizontal position is not otherwise specified, or ‘50%’ (‘top 50%’) for the vertical position if it is.", left: "Computes to ‘0%’ for the horizontal position if one or two values are given, otherwise specifies the left edge as the origin for the next offset.", right: "Computes to ‘100%’ for the horizontal position if one or two values are given, otherwise specifies the right edge as the origin for the next offset.", top: "Computes to ‘0%’ for the vertical position if one or two values are given, otherwise specifies the top edge as the origin for the next offset." }, Ro = { "no-repeat": "Placed once and not repeated in this direction.", repeat: "Repeated in this direction as often as needed to cover the background painting area.", "repeat-x": "Computes to ‘repeat no-repeat’.", "repeat-y": "Computes to ‘no-repeat repeat’.", round: "Repeated as often as will fit within the background positioning area. If it doesn’t fit a whole number of times, it is rescaled so that it does.", space: "Repeated as often as will fit within the background positioning area without being clipped and then the images are spaced out to fill the area." }, Fo = { dashed: "A series of square-ended dashes.", dotted: "A series of round dots.", double: "Two parallel solid lines with some space between them.", groove: "Looks as if it were carved in the canvas.", hidden: "Same as ‘none’, but has different behavior in the border conflict resolution rules for border-collapsed tables.", inset: "Looks as if the content on the inside of the border is sunken into the canvas.", none: "No border. Color and width are ignored.", outset: "Looks as if the content on the inside of the border is coming out of the canvas.", ridge: "Looks as if it were coming out of the canvas.", solid: "A single line segment." }, Mu = ["medium", "thick", "thin"], Eo = { "border-box": "The background is painted within (clipped to) the border box.", "content-box": "The background is painted within (clipped to) the content box.", "padding-box": "The background is painted within (clipped to) the padding box." }, Do = { "margin-box": "Uses the margin box as reference box.", "fill-box": "Uses the object bounding box as reference box.", "stroke-box": "Uses the stroke bounding box as reference box.", "view-box": "Uses the nearest SVG viewport as reference box." }, Ao = { initial: "Represents the value specified as the property’s initial value.", inherit: "Represents the computed value of the property on the element’s parent.", unset: "Acts as either `inherit` or `initial`, depending on whether the property is inherited or not." }, No = { "var()": "Evaluates the value of a custom variable.", "calc()": "Evaluates an mathematical expression. The following operators can be used: + - * /." }, Mo = { "url()": "Reference an image file by URL", "image()": "Provide image fallbacks and annotations.", "-webkit-image-set()": "Provide multiple resolutions. Remember to use unprefixed image-set() in addition.", "image-set()": "Provide multiple resolutions of an image and const the UA decide which is most appropriate in a given situation.", "-moz-element()": "Use an element in the document as an image. Remember to use unprefixed element() in addition.", "element()": "Use an element in the document as an image.", "cross-fade()": "Indicates the two images to be combined and how far along in the transition the combination is.", "-webkit-gradient()": "Deprecated. Use modern linear-gradient() or radial-gradient() instead.", "-webkit-linear-gradient()": "Linear gradient. Remember to use unprefixed version in addition.", "-moz-linear-gradient()": "Linear gradient. Remember to use unprefixed version in addition.", "-o-linear-gradient()": "Linear gradient. Remember to use unprefixed version in addition.", "linear-gradient()": "A linear gradient is created by specifying a straight gradient line, and then several colors placed along that line.", "-webkit-repeating-linear-gradient()": "Repeating Linear gradient. Remember to use unprefixed version in addition.", "-moz-repeating-linear-gradient()": "Repeating Linear gradient. Remember to use unprefixed version in addition.", "-o-repeating-linear-gradient()": "Repeating Linear gradient. Remember to use unprefixed version in addition.", "repeating-linear-gradient()": "Same as linear-gradient, except the color-stops are repeated infinitely in both directions, with their positions shifted by multiples of the difference between the last specified color-stop’s position and the first specified color-stop’s position.", "-webkit-radial-gradient()": "Radial gradient. Remember to use unprefixed version in addition.", "-moz-radial-gradient()": "Radial gradient. Remember to use unprefixed version in addition.", "radial-gradient()": "Colors emerge from a single point and smoothly spread outward in a circular or elliptical shape.", "-webkit-repeating-radial-gradient()": "Repeating radial gradient. Remember to use unprefixed version in addition.", "-moz-repeating-radial-gradient()": "Repeating radial gradient. Remember to use unprefixed version in addition.", "repeating-radial-gradient()": "Same as radial-gradient, except the color-stops are repeated infinitely in both directions, with their positions shifted by multiples of the difference between the last specified color-stop’s position and the first specified color-stop’s position." }, zo = { ease: "Equivalent to cubic-bezier(0.25, 0.1, 0.25, 1.0).", "ease-in": "Equivalent to cubic-bezier(0.42, 0, 1.0, 1.0).", "ease-in-out": "Equivalent to cubic-bezier(0.42, 0, 0.58, 1.0).", "ease-out": "Equivalent to cubic-bezier(0, 0, 0.58, 1.0).", linear: "Equivalent to cubic-bezier(0.0, 0.0, 1.0, 1.0).", "step-end": "Equivalent to steps(1, end).", "step-start": "Equivalent to steps(1, start).", "steps()": "The first parameter specifies the number of intervals in the function. The second parameter, which is optional, is either the value “start” or “end”.", "cubic-bezier()": "Specifies a cubic-bezier curve. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2).", "cubic-bezier(0.6, -0.28, 0.735, 0.045)": "Ease-in Back. Overshoots.", "cubic-bezier(0.68, -0.55, 0.265, 1.55)": "Ease-in-out Back. Overshoots.", "cubic-bezier(0.175, 0.885, 0.32, 1.275)": "Ease-out Back. Overshoots.", "cubic-bezier(0.6, 0.04, 0.98, 0.335)": "Ease-in Circular. Based on half circle.", "cubic-bezier(0.785, 0.135, 0.15, 0.86)": "Ease-in-out Circular. Based on half circle.", "cubic-bezier(0.075, 0.82, 0.165, 1)": "Ease-out Circular. Based on half circle.", "cubic-bezier(0.55, 0.055, 0.675, 0.19)": "Ease-in Cubic. Based on power of three.", "cubic-bezier(0.645, 0.045, 0.355, 1)": "Ease-in-out Cubic. Based on power of three.", "cubic-bezier(0.215, 0.610, 0.355, 1)": "Ease-out Cubic. Based on power of three.", "cubic-bezier(0.95, 0.05, 0.795, 0.035)": "Ease-in Exponential. Based on two to the power ten.", "cubic-bezier(1, 0, 0, 1)": "Ease-in-out Exponential. Based on two to the power ten.", "cubic-bezier(0.19, 1, 0.22, 1)": "Ease-out Exponential. Based on two to the power ten.", "cubic-bezier(0.47, 0, 0.745, 0.715)": "Ease-in Sine.", "cubic-bezier(0.445, 0.05, 0.55, 0.95)": "Ease-in-out Sine.", "cubic-bezier(0.39, 0.575, 0.565, 1)": "Ease-out Sine.", "cubic-bezier(0.55, 0.085, 0.68, 0.53)": "Ease-in Quadratic. Based on power of two.", "cubic-bezier(0.455, 0.03, 0.515, 0.955)": "Ease-in-out Quadratic. Based on power of two.", "cubic-bezier(0.25, 0.46, 0.45, 0.94)": "Ease-out Quadratic. Based on power of two.", "cubic-bezier(0.895, 0.03, 0.685, 0.22)": "Ease-in Quartic. Based on power of four.", "cubic-bezier(0.77, 0, 0.175, 1)": "Ease-in-out Quartic. Based on power of four.", "cubic-bezier(0.165, 0.84, 0.44, 1)": "Ease-out Quartic. Based on power of four.", "cubic-bezier(0.755, 0.05, 0.855, 0.06)": "Ease-in Quintic. Based on power of five.", "cubic-bezier(0.86, 0, 0.07, 1)": "Ease-in-out Quintic. Based on power of five.", "cubic-bezier(0.23, 1, 0.320, 1)": "Ease-out Quintic. Based on power of five." }, Lo = { "circle()": "Defines a circle.", "ellipse()": "Defines an ellipse.", "inset()": "Defines an inset rectangle.", "polygon()": "Defines a polygon." }, Ol = { length: ["em", "rem", "ex", "px", "cm", "mm", "in", "pt", "pc", "ch", "vw", "vh", "vmin", "vmax"], angle: ["deg", "rad", "grad", "turn"], time: ["ms", "s"], frequency: ["Hz", "kHz"], resolution: ["dpi", "dpcm", "dppx"], percentage: ["%", "fr"] }, zu = [ "a", "abbr", "address", "area", "article", "aside", "audio", "b", "base", "bdi", "bdo", "blockquote", "body", "br", "button", "canvas", "caption", "cite", "code", "col", "colgroup", "data", "datalist", "dd", "del", "details", "dfn", "dialog", "div", "dl", "dt", "em", "embed", "fieldset", "figcaption", "figure", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "legend", "li", "link", "main", "map", "mark", "menu", "menuitem", "meta", "meter", "nav", "noscript", "object", "ol", "optgroup", "option", "output", "p", "param", "picture", "pre", "progress", "q", "rb", "rp", "rt", "rtc", "ruby", "s", "samp", "script", "section", "select", "small", "source", "span", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "title", "tr", "track", "u", "ul", "const", "video", "wbr" ], Lu = [ "circle", "clipPath", "cursor", "defs", "desc", "ellipse", "feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence", "filter", "foreignObject", "g", "hatch", "hatchpath", "image", "line", "linearGradient", "marker", "mask", "mesh", "meshpatch", "meshrow", "metadata", "mpath", "path", "pattern", "polygon", "polyline", "radialGradient", "rect", "set", "solidcolor", "stop", "svg", "switch", "symbol", "text", "textPath", "tspan", "use", "view" ], Pu = [ "@bottom-center", "@bottom-left", "@bottom-left-corner", "@bottom-right", "@bottom-right-corner", "@left-bottom", "@left-middle", "@left-top", "@right-bottom", "@right-middle", "@right-top", "@top-center", "@top-left", "@top-left-corner", "@top-right", "@top-right-corner" ]; function Gn(t) { return Object.keys(t).map(function(e) { return t[e]; }); } function We(t) { return typeof t < "u"; } var Po = function(t, e, n) { if (n || arguments.length === 2) for (var r = 0, i = e.length, s; r < i; r++) (s || !(r in e)) && (s || (s = Array.prototype.slice.call(e, 0, r)), s[r] = e[r]); return t.concat(s || Array.prototype.slice.call(e)); }, Qi = function() { function t(e) { e === void 0 && (e = new Tn()), this.keyframeRegex = /^@(\-(webkit|ms|moz|o)\-)?keyframes$/i, this.scanner = e, this.token = { type: p.EOF, offset: -1, len: 0, text: "" }, this.prevToken = void 0; } return t.prototype.peekIdent = function(e) { return p.Ident === this.token.type && e.length === this.token.text.length && e === this.token.text.toLowerCase(); }, t.prototype.peekKeyword = function(e) { return p.AtKeyword === this.token.type && e.length === this.token.text.length && e === this.token.text.toLowerCase(); }, t.prototype.peekDelim = function(e) { return p.Delim === this.token.type && e === this.token.text; }, t.prototype.peek = function(e) { return e === this.token.type; }, t.prototype.peekOne = function() { for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; return e.indexOf(this.token.type) !== -1; }, t.prototype.peekRegExp = function(e, n) { return e !== this.token.type ? !1 : n.test(this.token.text); }, t.prototype.hasWhitespace = function() { return !!this.prevToken && this.prevToken.offset + this.prevToken.len !== this.token.offset; }, t.prototype.consumeToken = function() { this.prevToken = this.token, this.token = this.scanner.scan(); }, t.prototype.acceptUnicodeRange = function() { var e = this.scanner.tryScanUnicode(); return e ? (this.prevToken = e, this.token = this.scanner.scan(), !0) : !1; }, t.prototype.mark = function() { return { prev: this.prevToken, curr: this.token, pos: this.scanner.pos() }; }, t.prototype.restoreAtMark = function(e) { this.prevToken = e.prev, this.token = e.curr, this.scanner.goBackTo(e.pos); }, t.prototype.try = function(e) { var n = this.mark(), r = e(); return r || (this.restoreAtMark(n), null); }, t.prototype.acceptOneKeyword = function(e) { if (p.AtKeyword === this.token.type) for (var n = 0, r = e; n < r.length; n++) { var i = r[n]; if (i.length === this.token.text.length && i === this.token.text.toLowerCase()) return this.consumeToken(), !0; } return !1; }, t.prototype.accept = function(e) { return e === this.token.type ? (this.consumeToken(), !0) : !1; }, t.prototype.acceptIdent = function(e) { return this.peekIdent(e) ? (this.consumeToken(), !0) : !1; }, t.prototype.acceptKeyword = function(e) { return this.peekKeyword(e) ? (this.consumeToken(), !0) : !1; }, t.prototype.acceptDelim = function(e) { return this.peekDelim(e) ? (this.consumeToken(), !0) : !1; }, t.prototype.acceptRegexp = function(e) { return e.test(this.token.text) ? (this.consumeToken(), !0) : !1; }, t.prototype._parseRegexp = function(e) { var n = this.createNode(v.Identifier); do ; while (this.acceptRegexp(e)); return this.finish(n); }, t.prototype.acceptUnquotedString = function() { var e = this.scanner.pos(); this.scanner.goBackTo(this.token.offset); var n = this.scanner.scanUnquotedString(); return n ? (this.token = n, this.consumeToken(), !0) : (this.scanner.goBackTo(e), !1); }, t.prototype.resync = function(e, n) { for (; ; ) { if (e && e.indexOf(this.token.type) !== -1) return this.consumeToken(), !0; if (n && n.indexOf(this.token.type) !== -1) return !0; if (this.token.type === p.EOF) return !1; this.token = this.scanner.scan(); } }, t.prototype.createNode = function(e) { return new V(this.token.offset, this.token.len, e); }, t.prototype.create = function(e) { return new e(this.token.offset, this.token.len); }, t.prototype.finish = function(e, n, r, i) { if (!(e instanceof _e) && (n && this.markError(e, n, r, i), this.prevToken)) { var s = this.prevToken.offset + this.prevToken.len; e.length = s > e.offset ? s - e.offset : 0; } return e; }, t.prototype.markError = function(e, n, r, i) { this.token !== this.lastErrorToken && (e.addIssue(new zl(e, n, Le.Error, void 0, this.token.offset, this.token.len)), this.lastErrorToken = this.token), (r || i) && this.resync(r, i); }, t.prototype.parseStylesheet = function(e) { var n = e.version, r = e.getText(), i = function(s, a) { if (e.version !== n) throw new Error("Underlying model has changed, AST is no longer valid"); return r.substr(s, a); }; return this.internalParse(r, this._parseStylesheet, i); }, t.prototype.internalParse = function(e, n, r) { this.scanner.setSource(e), this.token = this.scanner.scan(); var i = n.bind(this)(); return i && (r ? i.textProvider = r : i.textProvider = function(s, a) { return e.substr(s, a); }), i; }, t.prototype._parseStylesheet = function() { for (var e = this.create(Ud); e.addChild(this._parseStylesheetStart()); ) ; var n = !1; do { var r = !1; do { r = !1; var i = this._parseStylesheetStatement(); for (i && (e.addChild(i), r = !0, n = !1, !this.peek(p.EOF) && this._needsSemicolonAfter(i) && !this.accept(p.SemiColon) && this.markError(e, C.SemiColonExpected)); this.accept(p.SemiColon) || this.accept(p.CDO) || this.accept(p.CDC); ) r = !0, n = !1; } while (r); if (this.peek(p.EOF)) break; n || (this.peek(p.AtKeyword) ? this.markError(e, C.UnknownAtRule) : this.markError(e, C.RuleOrSelectorExpected), n = !0), this.consumeToken(); } while (!this.peek(p.EOF)); return this.finish(e); }, t.prototype._parseStylesheetStart = function() { return this._parseCharset(); }, t.prototype._parseStylesheetStatement = function(e) { return e === void 0 && (e = !1), this.peek(p.AtKeyword) ? this._parseStylesheetAtStatement(e) : this._parseRuleset(e); }, t.prototype._parseStylesheetAtStatement = function(e) { return e === void 0 && (e = !1), this._parseImport() || this._parseMedia(e) || this._parsePage() || this._parseFontFace() || this._parseKeyframe() || this._parseSupports(e) || this._parseViewPort() || this._parseNamespace() || this._parseDocument() || this._parseUnknownAtRule(); }, t.prototype._tryParseRuleset = function(e) { var n = this.mark(); if (this._parseSelector(e)) { for (; this.accept(p.Comma) && this._parseSelector(e); ) ; if (this.accept(p.CurlyL)) return this.restoreAtMark(n), this._parseRuleset(e); } return this.restoreAtMark(n), null; }, t.prototype._parseRuleset = function(e) { e === void 0 && (e = !1); var n = this.create($t), r = n.getSelectors(); if (!r.addChild(this._parseSelector(e))) return null; for (; this.accept(p.Comma); ) if (!r.addChild(this._parseSelector(e))) return this.finish(n, C.SelectorExpected); return this._parseBody(n, this._parseRuleSetDeclaration.bind(this)); }, t.prototype._parseRuleSetDeclarationAtStatement = function() { return this._parseUnknownAtRule(); }, t.prototype._parseRuleSetDeclaration = function() { return this.peek(p.AtKeyword) ? this._parseRuleSetDeclarationAtStatement() : this._parseDeclaration(); }, t.prototype._needsSemicolonAfter = function(e) { switch (e.type) { case v.Keyframe: case v.ViewPort: case v.Media: case v.Ruleset: case v.Namespace: case v.If: case v.For: case v.Each: case v.While: case v.MixinDeclaration: case v.FunctionDeclaration: case v.MixinContentDeclaration: return !1; case v.ExtendsReference: case v.MixinContentReference: case v.ReturnStatement: case v.MediaQuery: case v.Debug: case v.Import: case v.AtApplyRule: case v.CustomPropertyDeclaration: return !0; case v.VariableDeclaration: return e.needsSemicolon; case v.MixinReference: return !e.getContent(); case v.Declaration: return !e.getNestedProperties(); } return !1; }, t.prototype._parseDeclarations = function(e) { var n = this.create(ji); if (!this.accept(p.CurlyL)) return null; for (var r = e(); n.addChild(r) && !this.peek(p.CurlyR); ) { if (this._needsSemicolonAfter(r) && !this.accept(p.SemiColon)) return this.finish(n, C.SemiColonExpected, [p.SemiColon, p.CurlyR]); for (r && this.prevToken && this.prevToken.type === p.SemiColon && (r.semicolonPosition = this.prevToken.offset); this.accept(p.SemiColon); ) ; r = e(); } return this.accept(p.CurlyR) ? this.finish(n) : this.finish(n, C.RightCurlyExpected, [p.CurlyR, p.SemiColon]); }, t.prototype._parseBody = function(e, n) { return e.setDeclarations(this._parseDeclarations(n)) ? this.finish(e) : this.finish(e, C.LeftCurlyExpected, [p.CurlyR, p.SemiColon]); }, t.prototype._parseSelector = function(e) { var n = this.create(Wn), r = !1; for (e && (r = n.addChild(this._parseCombinator())); n.addChild(this._parseSimpleSelector()); ) r = !0, n.addChild(this._parseCombinator()); return r ? this.finish(n) : null; }, t.prototype._parseDeclaration = function(e) { var n = this._tryParseCustomPropertyDeclaration(e); if (n) return n; var r = this.create(Ze); return r.setProperty(this._parseProperty()) ? this.accept(p.Colon) ? (this.prevToken && (r.colonPosition = this.prevToken.offset), r.setValue(this._parseExpr()) ? (r.addChild(this._parsePrio()), this.peek(p.SemiColon) && (r.semicolonPosition = this.token.offset), this.finish(r)) : this.finish(r, C.PropertyValueExpected)) : this.finish(r, C.ColonExpected, [p.Colon], e || [p.SemiColon]) : null; }, t.prototype._tryParseCustomPropertyDeclaration = function(e) { if (!this.peekRegExp(p.Ident, /^--/)) return null; var n = this.create(Bd); if (!n.setProperty(this._parseProperty())) return null; if (!this.accept(p.Colon)) return this.finish(n, C.ColonExpected, [p.Colon]); this.prevToken && (n.colonPosition = this.prevToken.offset); var r = this.mark(); if (this.peek(p.CurlyL)) { var i = this.create(Vd), s = this._parseDeclarations(this._parseRuleSetDeclaration.bind(this)); if (i.setDeclarations(s) && !s.isErroneous(!0) && (i.addChild(this._parsePrio()), this.peek(p.SemiColon))) return this.finish(i), n.setPropertySet(i), n.semicolonPosition = this.token.offset, this.finish(n); this.restoreAtMark(r); } var a = this._parseExpr(); return a && !a.isErroneous(!0) && (this._parsePrio(), this.peekOne.apply(this, Po(Po([], e || [], !1), [p.SemiColon, p.EOF], !1))) ? (n.setValue(a), this.peek(p.SemiColon) && (n.semicolonPosition = this.token.offset), this.finish(n)) : (this.restoreAtMark(r), n.addChild(this._parseCustomPropertyValue(e)), n.addChild(this._parsePrio()), We(n.colonPosition) && this.token.offset === n.colonPosition + 1 ? this.finish(n, C.PropertyValueExpected) : this.finish(n)); }, t.prototype._parseCustomPropertyValue = function(e) { var n = this; e === void 0 && (e = [p.CurlyR]); var r = this.create(V), i = function() { return a === 0 && o === 0 && l === 0; }, s = function() { return e.indexOf(n.token.type) !== -1; }, a = 0, o = 0, l = 0; e: for (; ; ) { switch (this.token.type) { case p.SemiColon: if (i()) break e; break; case p.Exclamation: if (i()) break e; break; case p.CurlyL: a++; break; case p.CurlyR: if (a--, a < 0) { if (s() && o === 0 && l === 0) break e; return this.finish(r, C.LeftCurlyExpected); } break; case p.ParenthesisL: o++; break; case p.ParenthesisR: if (o--, o < 0) { if (s() && l === 0 && a === 0) break e; return this.finish(r, C.LeftParenthesisExpected); } break; case p.BracketL: l++; break; case p.BracketR: if (l--, l < 0) return this.finish(r, C.LeftSquareBracketExpected); break; case p.BadString: break e; case p.EOF: var c = C.RightCurlyExpected; return l > 0 ? c = C.RightSquareBracketExpected : o > 0 && (c = C.RightParenthesisExpected), this.finish(r, c); } this.consumeToken(); } return this.finish(r); }, t.prototype._tryToParseDeclaration = function(e) { var n = this.mark(); return this._parseProperty() && this.accept(p.Colon) ? (this.restoreAtMark(n), this._parseDeclaration(e)) : (this.restoreAtMark(n), null); }, t.prototype._parseProperty = function() { var e = this.create(Hi), n = this.mark(); return (this.acceptDelim("*") || this.acceptDelim("_")) && this.hasWhitespace() ? (this.restoreAtMark(n), null) : e.setIdentifier(this._parsePropertyIdentifier()) ? this.finish(e) : null; }, t.prototype._parsePropertyIdentifier = function() { return this._parseIdent(); }, t.prototype._parseCharset = function() { if (!this.peek(p.Charset)) return null; var e = this.create(V); return this.consumeToken(), this.accept(p.String) ? this.accept(p.SemiColon) ? this.finish(e) : this.finish(e, C.SemiColonExpected) : this.finish(e, C.IdentifierExpected); }, t.prototype._parseImport = function() { if (!this.peekKeyword("@import")) return null; var e = this.create(Gi); return this.consumeToken(), !e.addChild(this._parseURILiteral()) && !e.addChild(this._parseStringLiteral()) ? this.finish(e, C.URIOrStringExpected) : (!this.peek(p.SemiColon) && !this.peek(p.EOF) && e.setMedialist(this._parseMediaQueryList()), this.finish(e)); }, t.prototype._parseNamespace = function() { if (!this.peekKeyword("@namespace")) return null; var e = this.create(eu); return this.consumeToken(), !e.addChild(this._parseURILiteral()) && (e.addChild(this._parseIdent()), !e.addChild(this._parseURILiteral()) && !e.addChild(this._parseStringLiteral())) ? this.finish(e, C.URIExpected, [p.SemiColon]) : this.accept(p.SemiColon) ? this.finish(e) : this.finish(e, C.SemiColonExpected); }, t.prototype._parseFontFace = function() { if (!this.peekKeyword("@font-face")) return null; var e = this.create(_l); return this.consumeToken(), this._parseBody(e, this._parseRuleSetDeclaration.bind(this)); }, t.prototype._parseViewPort = function() { if (!this.peekKeyword("@-ms-viewport") && !this.peekKeyword("@-o-viewport") && !this.peekKeyword("@viewport")) return null; var e = this.create(Xd); return this.consumeToken(), this._parseBody(e, this._parseRuleSetDeclaration.bind(this)); }, t.prototype._parseKeyframe = function() { if (!this.peekRegExp(p.AtKeyword, this.keyframeRegex)) return null; var e = this.create(Fl), n = this.create(V); return this.consumeToken(), e.setKeyword(this.finish(n)), n.matches("@-ms-keyframes") && this.markError(n, C.UnknownKeyword), e.setIdentifier(this._parseKeyframeIdent()) ? this._parseBody(e, this._parseKeyframeSelector.bind(this)) : this.finish(e, C.IdentifierExpected, [p.CurlyR]); }, t.prototype._parseKeyframeIdent = function() { return this._parseIdent([Z.Keyframe]); }, t.prototype._parseKeyframeSelector = function() { var e = this.create(Ba); if (!e.addChild(this._parseIdent()) && !this.accept(p.Percentage)) return null; for (; this.accept(p.Comma); ) if (!e.addChild(this._parseIdent()) && !this.accept(p.Percentage)) return this.finish(e, C.PercentageExpected); return this._parseBody(e, this._parseRuleSetDeclaration.bind(this)); }, t.prototype._tryParseKeyframeSelector = function() { var e = this.create(Ba), n = this.mark(); if (!e.addChild(this._parseIdent()) && !this.accept(p.Percentage)) return null; for (; this.accept(p.Comma); ) if (!e.addChild(this._parseIdent()) && !this.accept(p.Percentage)) return this.restoreAtMark(n), null; return this.peek(p.CurlyL) ? this._parseBody(e, this._parseRuleSetDeclaration.bind(this)) : (this.restoreAtMark(n), null); }, t.prototype._parseSupports = function(e) { if (e === void 0 && (e = !1), !this.peekKeyword("@supports")) return null; var n = this.create(vi); return this.consumeToken(), n.addChild(this._parseSupportsCondition()), this._parseBody(n, this._parseSupportsDeclaration.bind(this, e)); }, t.prototype._parseSupportsDeclaration = function(e) { return e === void 0 && (e = !1), e ? this._tryParseRuleset(!0) || this._tryToParseDeclaration() || this._parseStylesheetStatement(!0) : this._parseStylesheetStatement(!1); }, t.prototype._parseSupportsCondition = function() { var e = this.create(vn); if (this.acceptIdent("not")) e.addChild(this._parseSupportsConditionInParens()); else if (e.addChild(this._parseSupportsConditionInParens()), this.peekRegExp(p.Ident, /^(and|or)$/i)) for (var n = this.token.text.toLowerCase(); this.acceptIdent(n); ) e.addChild(this._parseSupportsConditionInParens()); return this.finish(e); }, t.prototype._parseSupportsConditionInParens = function() { var e = this.create(vn); if (this.accept(p.ParenthesisL)) return this.prevToken && (e.lParent = this.prevToken.offset), !e.addChild(this._tryToParseDeclaration([p.ParenthesisR])) && !this._parseSupportsCondition() ? this.finish(e, C.ConditionExpected) : this.accept(p.ParenthesisR) ? (this.prevToken && (e.rParent = this.prevToken.offset), this.finish(e)) : this.finish(e, C.RightParenthesisExpected, [p.ParenthesisR], []); if (this.peek(p.Ident)) { var n = this.mark(); if (this.consumeToken(), !this.hasWhitespace() && this.accept(p.ParenthesisL)) { for (var r = 1; this.token.type !== p.EOF && r !== 0; ) this.token.type === p.ParenthesisL ? r++ : this.token.type === p.ParenthesisR && r--, this.consumeToken(); return this.finish(e); } else this.restoreAtMark(n); } return this.finish(e, C.LeftParenthesisExpected, [], [p.ParenthesisL]); }, t.prototype._parseMediaDeclaration = function(e) { return e === void 0 && (e = !1), e ? this._tryParseRuleset(!0) || this._tryToParseDeclaration() || this._parseStylesheetStatement(!0) : this._parseStylesheetStatement(!1); }, t.prototype._parseMedia = function(e) { if (e === void 0 && (e = !1), !this.peekKeyword("@media")) return null; var n = this.create(El); return this.consumeToken(), n.addChild(this._parseMediaQueryList()) ? this._parseBody(n, this._parseMediaDeclaration.bind(this, e)) : this.finish(n, C.MediaQueryExpected); }, t.prototype._parseMediaQueryList = function() { var e = this.create(Dl); if (!e.addChild(this._parseMediaQuery())) return this.finish(e, C.MediaQueryExpected); for (; this.accept(p.Comma); ) if (!e.addChild(this._parseMediaQuery())) return this.finish(e, C.MediaQueryExpected); return this.finish(e); }, t.prototype._parseMediaQuery = function() { var e = this.create(Al), n = this.mark(); if (this.acceptIdent("not"), this.peek(p.ParenthesisL)) this.restoreAtMark(n), e.addChild(this._parseMediaCondition()); else { if (this.acceptIdent("only"), !e.addChild(this._parseIdent())) return null; this.acceptIdent("and") && e.addChild(this._parseMediaCondition()); } return this.finish(e); }, t.prototype._parseRatio = function() { var e = this.mark(), n = this.create(lu); return this._parseNumeric() ? this.acceptDelim("/") ? this._parseNumeric() ? this.finish(n) : this.finish(n, C.NumberExpected) : (this.restoreAtMark(e), null) : null; }, t.prototype._parseMediaCondition = function() { var e = this.create(nu); this.acceptIdent("not"); for (var n = !0; n; ) { if (!this.accept(p.ParenthesisL)) return this.finish(e, C.LeftParenthesisExpected, [], [p.CurlyL]); if (this.peek(p.ParenthesisL) || this.peekIdent("not") ? e.addChild(this._parseMediaCondition()) : e.addChild(this._parseMediaFeature()), !this.accept(p.ParenthesisR)) return this.finish(e, C.RightParenthesisExpected, [], [p.CurlyL]); n = this.acceptIdent("and") || this.acceptIdent("or"); } return this.finish(e); }, t.prototype._parseMediaFeature = function() { var e = this, n = [p.ParenthesisR], r = this.create(ru), i = function() { return e.acceptDelim("<") || e.acceptDelim(">") ? (e.hasWhitespace() || e.acceptDelim("="), !0) : !!e.acceptDelim("="); }; if (r.addChild(this._parseMediaFeatureName())) { if (this.accept(p.Colon)) { if (!r.addChild(this._parseMediaFeatureValue())) return this.finish(r, C.TermExpected, [], n); } else if (i()) { if (!r.addChild(this._parseMediaFeatureValue())) return this.finish(r, C.TermExpected, [], n); if (i() && !r.addChild(this._parseMediaFeatureValue())) return this.finish(r, C.TermExpected, [], n); } } else if (r.addChild(this._parseMediaFeatureValue())) { if (!i()) return this.finish(r, C.OperatorExpected, [], n); if (!r.addChild(this._parseMediaFeatureName())) return this.finish(r, C.IdentifierExpected, [], n); if (i() && !r.addChild(this._parseMediaFeatureValue())) return this.finish(r, C.TermExpected, [], n); } else return this.finish(r, C.IdentifierExpected, [], n); return this.finish(r); }, t.prototype._parseMediaFeatureName = function() { return this._parseIdent(); }, t.prototype._parseMediaFeatureValue = function() { return this._parseRatio() || this._parseTermExpression(); }, t.prototype._parseMedium = function() { var e = this.create(V); return e.addChild(this._parseIdent()) ? this.finish(e) : null; }, t.prototype._parsePageDeclaration = function() { return this._parsePageMarginBox() || this._parseRuleSetDeclaration(); }, t.prototype._parsePage = function() { if (!this.peekKeyword("@page")) return null; var e = this.create(iu); if (this.consumeToken(), e.addChild(this._parsePageSelector())) { for (; this.accept(p.Comma); ) if (!e.addChild(this._parsePageSelector())) return this.finish(e, C.IdentifierExpected); } return this._parseBody(e, this._parsePageDeclaration.bind(this)); }, t.prototype._parsePageMarginBox = function() { if (!this.peek(p.AtKeyword)) return null; var e = this.create(su); return this.acceptOneKeyword(Pu) || this.markError(e, C.UnknownAtRule, [], [p.CurlyL]), this._parseBody(e, this._parseRuleSetDeclaration.bind(this)); }, t.prototype._parsePageSelector = function() { if (!this.peek(p.Ident) && !this.peek(p.Colon)) return null; var e = this.create(V); return e.addChild(this._parseIdent()), this.accept(p.Colon) && !e.addChild(this._parseIdent()) ? this.finish(e, C.IdentifierExpected) : this.finish(e); }, t.prototype._parseDocument = function() { if (!this.peekKeyword("@-moz-document")) return null; var e = this.create(tu); return this.consumeToken(), this.resync([], [p.CurlyL]), this._parseBody(e, this._parseStylesheetStatement.bind(this)); }, t.prototype._parseUnknownAtRule = function() { if (!this.peek(p.AtKeyword)) return null; var e = this.create(Ml); e.addChild(this._parseUnknownAtRuleName()); var n = function() { return i === 0 && s === 0 && a === 0; }, r = 0, i = 0, s = 0, a = 0; e: for (; ; ) { switch (this.token.type) { case p.SemiColon: if (n()) break e; break; case p.EOF: return i > 0 ? this.finish(e, C.RightCurlyExpected) : a > 0 ? this.finish(e, C.RightSquareBracketExpected) : s > 0 ? this.finish(e, C.RightParenthesisExpected) : this.finish(e); case p.CurlyL: r++, i++; break; case p.CurlyR: if (i--, r > 0 && i === 0) { if (this.consumeToken(), a > 0) return this.finish(e, C.RightSquareBracketExpected); if (s > 0) return this.finish(e, C.RightParenthesisExpected); break e; } if (i < 0) { if (s === 0 && a === 0) break e; return this.finish(e, C.LeftCurlyExpected); } break; case p.ParenthesisL: s++; break; case p.ParenthesisR: if (s--, s < 0) return this.finish(e, C.LeftParenthesisExpected); break; case p.BracketL: a++; break; case p.BracketR: if (a--, a < 0) return this.finish(e, C.LeftSquareBracketExpected); break; } this.consumeToken(); } return e; }, t.prototype._parseUnknownAtRuleName = function() { var e = this.create(V); return this.accept(p.AtKeyword) ? this.finish(e) : e; }, t.prototype._parseOperator = function() { if (this.peekDelim("/") || this.peekDelim("*") || this.peekDelim("+") || this.peekDelim("-") || this.peek(p.Dashmatch) || this.peek(p.Includes) || this.peek(p.SubstringOperator) || this.peek(p.PrefixOperator) || this.peek(p.SuffixOperator) || this.peekDelim("=")) { var e = this.createNode(v.Operator); return this.consumeToken(), this.finish(e); } else return null; }, t.prototype._parseUnaryOperator = function() { if (!this.peekDelim("+") && !this.peekDelim("-")) return null; var e = this.create(V); return this.consumeToken(), this.finish(e); }, t.prototype._parseCombinator = function() { if (this.peekDelim(">")) { var e = this.create(V); this.consumeToken(); var n = this.mark(); if (!this.hasWhitespace() && this.acceptDelim(">")) { if (!this.hasWhitespace() && this.acceptDelim(">")) return e.type = v.SelectorCombinatorShadowPiercingDescendant, this.finish(e); this.restoreAtMark(n); } return e.type = v.SelectorCombinatorParent, this.finish(e); } else if (this.peekDelim("+")) { var e = this.create(V); return this.consumeToken(), e.type = v.SelectorCombinatorSibling, this.finish(e); } else if (this.peekDelim("~")) { var e = this.create(V); return this.consumeToken(), e.type = v.SelectorCombinatorAllSiblings, this.finish(e); } else if (this.peekDelim("/")) { var e = this.create(V); this.consumeToken(); var n = this.mark(); if (!this.hasWhitespace() && this.acceptIdent("deep") && !this.hasWhitespace() && this.acceptDelim("/")) return e.type = v.SelectorCombinatorShadowPiercingDescendant, this.finish(e); this.restoreAtMark(n); } return null; }, t.prototype._parseSimpleSelector = function() { var e = this.create(Ht), n = 0; for (e.addChild(this._parseElementName()) && n++; (n === 0 || !this.hasWhitespace()) && e.addChild(this._parseSimpleSelectorBody()); ) n++; return n > 0 ? this.finish(e) : null; }, t.prototype._parseSimpleSelectorBody = function() { return this._parsePseudo() || this._parseHash() || this._parseClass() || this._parseAttrib(); }, t.prototype._parseSelectorIdent = function() { return this._parseIdent(); }, t.prototype._parseHash = function() { if (!this.peek(p.Hash) && !this.peekDelim("#")) return null; var e = this.createNode(v.IdentifierSelector); if (this.acceptDelim("#")) { if (this.hasWhitespace() || !e.addChild(this._parseSelectorIdent())) return this.finish(e, C.IdentifierExpected); } else this.consumeToken(); return this.finish(e); }, t.prototype._parseClass = function() { if (!this.peekDelim(".")) return null; var e = this.createNode(v.ClassSelector); return this.consumeToken(), this.hasWhitespace() || !e.addChild(this._parseSelectorIdent()) ? this.finish(e, C.IdentifierExpected) : this.finish(e); }, t.prototype._parseElementName = function() { var e = this.mark(), n = this.createNode(v.ElementNameSelector); return n.addChild(this._parseNamespacePrefix()), !n.addChild(this._parseSelectorIdent()) && !this.acceptDelim("*") ? (this.restoreAtMark(e), null) : this.finish(n); }, t.prototype._parseNamespacePrefix = function() { var e = this.mark(), n = this.createNode(v.NamespacePrefix); return !n.addChild(this._parseIdent()) && this.acceptDelim("*"), this.acceptDelim("|") ? this.finish(n) : (this.restoreAtMark(e), null); }, t.prototype._parseAttrib = function() { if (!this.peek(p.BracketL)) return null; var e = this.create(ou); return this.consumeToken(), e.setNamespacePrefix(this._parseNamespacePrefix()), e.setIdentifier(this._parseIdent()) ? (e.setOperator(this._parseOperator()) && (e.setValue(this._parseBinaryExpr()), this.acceptIdent("i"), this.acceptIdent("s")), this.accept(p.BracketR) ? this.finish(e) : this.finish(e, C.RightSquareBracketExpected)) : this.finish(e, C.IdentifierExpected); }, t.prototype._parsePseudo = function() { var e = this, n = this._tryParsePseudoIdentifier(); if (n) { if (!this.hasWhitespace() && this.accept(p.ParenthesisL)) { var r = function() { var i = e.create(V); if (!i.addChild(e._parseSelector(!1))) return null; for (; e.accept(p.Comma) && i.addChild(e._parseSelector(!1)); ) ; return e.peek(p.ParenthesisR) ? e.finish(i) : null; }; if (n.addChild(this.try(r) || this._parseBinaryExpr()), !this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected); } return this.finish(n); } return null; }, t.prototype._tryParsePseudoIdentifier = function() { if (!this.peek(p.Colon)) return null; var e = this.mark(), n = this.createNode(v.PseudoSelector); return this.consumeToken(), this.hasWhitespace() ? (this.restoreAtMark(e), null) : (this.accept(p.Colon), this.hasWhitespace() || !n.addChild(this._parseIdent()) ? this.finish(n, C.IdentifierExpected) : this.finish(n)); }, t.prototype._tryParsePrio = function() { var e = this.mark(), n = this._parsePrio(); return n || (this.restoreAtMark(e), null); }, t.prototype._parsePrio = function() { if (!this.peek(p.Exclamation)) return null; var e = this.createNode(v.Prio); return this.accept(p.Exclamation) && this.acceptIdent("important") ? this.finish(e) : null; }, t.prototype._parseExpr = function(e) { e === void 0 && (e = !1); var n = this.create(Nl); if (!n.addChild(this._parseBinaryExpr())) return null; for (; ; ) { if (this.peek(p.Comma)) { if (e) return this.finish(n); this.consumeToken(); } else if (!this.hasWhitespace()) break; if (!n.addChild(this._parseBinaryExpr())) break; } return this.finish(n); }, t.prototype._parseUnicodeRange = function() { if (!this.peekIdent("u")) return null; var e = this.create(Od); return this.acceptUnicodeRange() ? this.finish(e) : null; }, t.prototype._parseNamedLine = function() { if (!this.peek(p.BracketL)) return null; var e = this.createNode(v.GridLine); for (this.consumeToken(); e.addChild(this._parseIdent()); ) ; return this.accept(p.BracketR) ? this.finish(e) : this.finish(e, C.RightSquareBracketExpected); }, t.prototype._parseBinaryExpr = function(e, n) { var r = this.create(Ji); if (!r.setLeft(e || this._parseTerm())) return null; if (!r.setOperator(n || this._parseOperator())) return this.finish(r); if (!r.setRight(this._parseTerm())) return this.finish(r, C.TermExpected); r = this.finish(r); var i = this._parseOperator(); return i && (r = this._parseBinaryExpr(r, i)), this.finish(r); }, t.prototype._parseTerm = function() { var e = this.create(au); return e.setOperator(this._parseUnaryOperator()), e.setExpression(this._parseTermExpression()) ? this.finish(e) : null; }, t.prototype._parseTermExpression = function() { return this._parseURILiteral() || this._parseUnicodeRange() || this._parseFunction() || this._parseIdent() || this._parseStringLiteral() || this._parseNumeric() || this._parseHexColor() || this._parseOperation() || this._parseNamedLine(); }, t.prototype._parseOperation = function() { if (!this.peek(p.ParenthesisL)) return null; var e = this.create(V); return this.consumeToken(), e.addChild(this._parseExpr()), this.accept(p.ParenthesisR) ? this.finish(e) : this.finish(e, C.RightParenthesisExpected); }, t.prototype._parseNumeric = function() { if (this.peek(p.Num) || this.peek(p.Percentage) || this.peek(p.Resolution) || this.peek(p.Length) || this.peek(p.EMS) || this.peek(p.EXS) || this.peek(p.Angle) || this.peek(p.Time) || this.peek(p.Dimension) || this.peek(p.Freq)) { var e = this.create(Yi); return this.consumeToken(), this.finish(e); } return null; }, t.prototype._parseStringLiteral = function() { if (!this.peek(p.String) && !this.peek(p.BadString)) return null; var e = this.createNode(v.StringLiteral); return this.consumeToken(), this.finish(e); }, t.prototype._parseURILiteral = function() { if (!this.peekRegExp(p.Ident, /^url(-prefix)?$/i)) return null; var e = this.mark(), n = this.createNode(v.URILiteral); return this.accept(p.Ident), this.hasWhitespace() || !this.peek(p.ParenthesisL) ? (this.restoreAtMark(e), null) : (this.scanner.inURL = !0, this.consumeToken(), n.addChild(this._parseURLArgument()), this.scanner.inURL = !1, this.accept(p.ParenthesisR) ? this.finish(n) : this.finish(n, C.RightParenthesisExpected)); }, t.prototype._parseURLArgument = function() { var e = this.create(V); return !this.accept(p.String) && !this.accept(p.BadString) && !this.acceptUnquotedString() ? null : this.finish(e); }, t.prototype._parseIdent = function(e) { if (!this.peek(p.Ident)) return null; var n = this.create(Ue); return e && (n.referenceTypes = e), n.isCustomProperty = this.peekRegExp(p.Ident, /^--/), this.consumeToken(), this.finish(n); }, t.prototype._parseFunction = function() { var e = this.mark(), n = this.create(On); if (!n.setIdentifier(this._parseFunctionIdentifier())) return null; if (this.hasWhitespace() || !this.accept(p.ParenthesisL)) return this.restoreAtMark(e), null; if (n.getArguments().addChild(this._parseFunctionArgument())) for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) n.getArguments().addChild(this._parseFunctionArgument()) || this.markError(n, C.ExpressionExpected); return this.accept(p.ParenthesisR) ? this.finish(n) : this.finish(n, C.RightParenthesisExpected); }, t.prototype._parseFunctionIdentifier = function() { if (!this.peek(p.Ident)) return null; var e = this.create(Ue); if (e.referenceTypes = [Z.Function], this.acceptIdent("progid")) { if (this.accept(p.Colon)) for (; this.accept(p.Ident) && this.acceptDelim("."); ) ; return this.finish(e); } return this.consumeToken(), this.finish(e); }, t.prototype._parseFunctionArgument = function() { var e = this.create(Qt); return e.setValue(this._parseExpr(!0)) ? this.finish(e) : null; }, t.prototype._parseHexColor = function() { if (this.peekRegExp(p.Hash, /^#([A-Fa-f0-9]{3}|[A-Fa-f0-9]{4}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})$/g)) { var e = this.create(Xi); return this.consumeToken(), this.finish(e); } else return null; }, t; }(); function Iu(t, e) { var n = 0, r = t.length; if (r === 0) return 0; for (; n < r; ) { var i = Math.floor((n + r) / 2); e(t[i]) ? r = i : n = i + 1; } return n; } function Ul(t, e) { return t.indexOf(e) !== -1; } function Jn() { for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; for (var n = [], r = 0, i = t; r < i.length; r++) for (var s = i[r], a = 0, o = s; a < o.length; a++) { var l = o[a]; Ul(n, l) || n.push(l); } return n; } var Tu = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Vl = function() { function t(e, n) { this.offset = e, this.length = n, this.symbols = [], this.parent = null, this.children = []; } return t.prototype.addChild = function(e) { this.children.push(e), e.setParent(this); }, t.prototype.setParent = function(e) { this.parent = e; }, t.prototype.findScope = function(e, n) { return n === void 0 && (n = 0), this.offset <= e && this.offset + this.length > e + n || this.offset === e && this.length === n ? this.findInScope(e, n) : null; }, t.prototype.findInScope = function(e, n) { n === void 0 && (n = 0); var r = e + n, i = Iu(this.children, function(a) { return a.offset > r; }); if (i === 0) return this; var s = this.children[i - 1]; return s.offset <= e && s.offset + s.length >= e + n ? s.findInScope(e, n) : this; }, t.prototype.addSymbol = function(e) { this.symbols.push(e); }, t.prototype.getSymbol = function(e, n) { for (var r = 0; r < this.symbols.length; r++) { var i = this.symbols[r]; if (i.name === e && i.type === n) return i; } return null; }, t.prototype.getSymbols = function() { return this.symbols; }, t; }(), Wu = function(t) { Tu(e, t); function e() { return t.call(this, 0, Number.MAX_VALUE) || this; } return e; }(Vl), Xn = function() { function t(e, n, r, i) { this.name = e, this.value = n, this.node = r, this.type = i; } return t; }(), Ou = function() { function t(e) { this.scope = e; } return t.prototype.addSymbol = function(e, n, r, i) { if (e.offset !== -1) { var s = this.scope.findScope(e.offset, e.length); s && s.addSymbol(new Xn(n, r, e, i)); } }, t.prototype.addScope = function(e) { if (e.offset !== -1) { var n = this.scope.findScope(e.offset, e.length); if (n && (n.offset !== e.offset || n.length !== e.length)) { var r = new Vl(e.offset, e.length); return n.addChild(r), r; } return n; } return null; }, t.prototype.addSymbolToChildScope = function(e, n, r, i, s) { if (e && e.offset !== -1) { var a = this.addScope(e); a && a.addSymbol(new Xn(r, i, n, s)); } }, t.prototype.visitNode = function(e) { switch (e.type) { case v.Keyframe: return this.addSymbol(e, e.getName(), void 0, Z.Keyframe), !0; case v.CustomPropertyDeclaration: return this.visitCustomPropertyDeclarationNode(e); case v.VariableDeclaration: return this.visitVariableDeclarationNode(e); case v.Ruleset: return this.visitRuleSet(e); case v.MixinDeclaration: return this.addSymbol(e, e.getName(), void 0, Z.Mixin), !0; case v.FunctionDeclaration: return this.addSymbol(e, e.getName(), void 0, Z.Function), !0; case v.FunctionParameter: return this.visitFunctionParameterNode(e); case v.Declarations: return this.addScope(e), !0; case v.For: var n = e, r = n.getDeclarations(); return r && n.variable && this.addSymbolToChildScope(r, n.variable, n.variable.getName(), void 0, Z.Variable), !0; case v.Each: { var i = e, s = i.getDeclarations(); if (s) for (var a = i.getVariables().getChildren(), o = 0, l = a; o < l.length; o++) { var c = l[o]; this.addSymbolToChildScope(s, c, c.getName(), void 0, Z.Variable); } return !0; } } return !0; }, t.prototype.visitRuleSet = function(e) { var n = this.scope.findScope(e.offset, e.length); if (n) for (var r = 0, i = e.getSelectors().getChildren(); r < i.length; r++) { var s = i[r]; s instanceof Wn && s.getChildren().length === 1 && n.addSymbol(new Xn(s.getChild(0).getText(), void 0, s, Z.Rule)); } return !0; }, t.prototype.visitVariableDeclarationNode = function(e) { var n = e.getValue() ? e.getValue().getText() : void 0; return this.addSymbol(e, e.getName(), n, Z.Variable), !0; }, t.prototype.visitFunctionParameterNode = function(e) { var n = e.getParent().getDeclarations(); if (n) { var r = e.getDefaultValue(), i = r ? r.getText() : void 0; this.addSymbolToChildScope(n, e, e.getName(), i, Z.Variable); } return !0; }, t.prototype.visitCustomPropertyDeclarationNode = function(e) { var n = e.getValue() ? e.getValue().getText() : ""; return this.addCSSVariable(e.getProperty(), e.getProperty().getName(), n, Z.Variable), !0; }, t.prototype.addCSSVariable = function(e, n, r, i) { e.offset !== -1 && this.scope.addSymbol(new Xn(n, r, e, i)); }, t; }(), Di = function() { function t(e) { this.global = new Wu(), e.acceptVisitor(new Ou(this.global)); } return t.prototype.findSymbolsAtOffset = function(e, n) { for (var r = this.global.findScope(e, 0), i = [], s = {}; r; ) { for (var a = r.getSymbols(), o = 0; o < a.length; o++) { var l = a[o]; l.type === n && !s[l.name] && (i.push(l), s[l.name] = !0); } r = r.parent; } return i; }, t.prototype.internalFindSymbol = function(e, n) { var r = e; if (e.parent instanceof _r && e.parent.getParent() instanceof ce && (r = e.parent.getParent().getDeclarations()), e.parent instanceof Qt && e.parent.getParent() instanceof On) { var i = e.parent.getParent().getIdentifier(); if (i) { var s = this.internalFindSymbol(i, [Z.Function]); s && (r = s.node.getDeclarations()); } } if (!r) return null; for (var a = e.getText(), o = this.global.findScope(r.offset, r.length); o; ) { for (var l = 0; l < n.length; l++) { var c = n[l], h = o.getSymbol(a, c); if (h) return h; } o = o.parent; } return null; }, t.prototype.evaluateReferenceTypes = function(e) { if (e instanceof Ue) { var n = e.referenceTypes; if (n) return n; if (e.isCustomProperty) return [Z.Variable]; var r = Wd(e); if (r) { var i = r.getNonPrefixedPropertyName(); if ((i === "animation" || i === "animation-name") && r.getValue() && r.getValue().offset === e.offset) return [Z.Keyframe]; } } else if (e instanceof Ki) return [Z.Variable]; var s = e.findAParent(v.Selector, v.ExtendsReference); return s ? [Z.Rule] : null; }, t.prototype.findSymbolFromNode = function(e) { if (!e) return null; for (; e.type === v.Interpolation; ) e = e.getParent(); var n = this.evaluateReferenceTypes(e); return n ? this.internalFindSymbol(e, n) : null; }, t.prototype.matchesSymbol = function(e, n) { if (!e) return !1; for (; e.type === v.Interpolation; ) e = e.getParent(); if (!e.matches(n.name)) return !1; var r = this.evaluateReferenceTypes(e); if (!r || r.indexOf(n.type) === -1) return !1; var i = this.internalFindSymbol(e, r); return i === n; }, t.prototype.findSymbol = function(e, n, r) { for (var i = this.global.findScope(r); i; ) { var s = i.getSymbol(e, n); if (s) return s; i = i.parent; } return null; }, t; }(), Bl; Bl = (() => { var t = { 470: (r) => { function i(o) { if (typeof o != "string") throw new TypeError("Path must be a string. Received " + JSON.stringify(o)); } function s(o, l) { for (var c, h = "", u = 0, f = -1, m = 0, g = 0; g <= o.length; ++g) { if (g < o.length) c = o.charCodeAt(g); else { if (c === 47) break; c = 47; } if (c === 47) { if (!(f === g - 1 || m === 1)) if (f !== g - 1 && m === 2) { if (h.length < 2 || u !== 2 || h.charCodeAt(h.length - 1) !== 46 || h.charCodeAt(h.length - 2) !== 46) { if (h.length > 2) { var b = h.lastIndexOf("/"); if (b !== h.length - 1) { b === -1 ? (h = "", u = 0) : u = (h = h.slice(0, b)).length - 1 - h.lastIndexOf("/"), f = g, m = 0; continue; } } else if (h.length === 2 || h.length === 1) { h = "", u = 0, f = g, m = 0; continue; } } l && (h.length > 0 ? h += "/.." : h = "..", u = 2); } else h.length > 0 ? h += "/" + o.slice(f + 1, g) : h = o.slice(f + 1, g), u = g - f - 1; f = g, m = 0; } else c === 46 && m !== -1 ? ++m : m = -1; } return h; } var a = { resolve: function() { for (var o, l = "", c = !1, h = arguments.length - 1; h >= -1 && !c; h--) { var u; h >= 0 ? u = arguments[h] : (o === void 0 && (o = process.cwd()), u = o), i(u), u.length !== 0 && (l = u + "/" + l, c = u.charCodeAt(0) === 47); } return l = s(l, !c), c ? l.length > 0 ? "/" + l : "/" : l.length > 0 ? l : "."; }, normalize: function(o) { if (i(o), o.length === 0) return "."; var l = o.charCodeAt(0) === 47, c = o.charCodeAt(o.length - 1) === 47; return (o = s(o, !l)).length !== 0 || l || (o = "."), o.length > 0 && c && (o += "/"), l ? "/" + o : o; }, isAbsolute: function(o) { return i(o), o.length > 0 && o.charCodeAt(0) === 47; }, join: function() { if (arguments.length === 0) return "."; for (var o, l = 0; l < arguments.length; ++l) { var c = arguments[l]; i(c), c.length > 0 && (o === void 0 ? o = c : o += "/" + c); } return o === void 0 ? "." : a.normalize(o); }, relative: function(o, l) { if (i(o), i(l), o === l || (o = a.resolve(o)) === (l = a.resolve(l))) return ""; for (var c = 1; c < o.length && o.charCodeAt(c) === 47; ++c) ; for (var h = o.length, u = h - c, f = 1; f < l.length && l.charCodeAt(f) === 47; ++f) ; for (var m = l.length - f, g = u < m ? u : m, b = -1, y = 0; y <= g; ++y) { if (y === g) { if (m > g) { if (l.charCodeAt(f + y) === 47) return l.slice(f + y + 1); if (y === 0) return l.slice(f + y); } else u > g && (o.charCodeAt(c + y) === 47 ? b = y : y === 0 && (b = 0)); break; } var k = o.charCodeAt(c + y); if (k !== l.charCodeAt(f + y)) break; k === 47 && (b = y); } var w = ""; for (y = c + b + 1; y <= h; ++y) y !== h && o.charCodeAt(y) !== 47 || (w.length === 0 ? w += ".." : w += "/.."); return w.length > 0 ? w + l.slice(f + b) : (f += b, l.charCodeAt(f) === 47 && ++f, l.slice(f)); }, _makeLong: function(o) { return o; }, dirname: function(o) { if (i(o), o.length === 0) return "."; for (var l = o.charCodeAt(0), c = l === 47, h = -1, u = !0, f = o.length - 1; f >= 1; --f) if ((l = o.charCodeAt(f)) === 47) { if (!u) { h = f; break; } } else u = !1; return h === -1 ? c ? "/" : "." : c && h === 1 ? "//" : o.slice(0, h); }, basename: function(o, l) { if (l !== void 0 && typeof l != "string") throw new TypeError('"ext" argument must be a string'); i(o); var c, h = 0, u = -1, f = !0; if (l !== void 0 && l.length > 0 && l.length <= o.length) { if (l.length === o.length && l === o) return ""; var m = l.length - 1, g = -1; for (c = o.length - 1; c >= 0; --c) { var b = o.charCodeAt(c); if (b === 47) { if (!f) { h = c + 1; break; } } else g === -1 && (f = !1, g = c + 1), m >= 0 && (b === l.charCodeAt(m) ? --m == -1 && (u = c) : (m = -1, u = g)); } return h === u ? u = g : u === -1 && (u = o.length), o.slice(h, u); } for (c = o.length - 1; c >= 0; --c) if (o.charCodeAt(c) === 47) { if (!f) { h = c + 1; break; } } else u === -1 && (f = !1, u = c + 1); return u === -1 ? "" : o.slice(h, u); }, extname: function(o) { i(o); for (var l = -1, c = 0, h = -1, u = !0, f = 0, m = o.length - 1; m >= 0; --m) { var g = o.charCodeAt(m); if (g !== 47) h === -1 && (u = !1, h = m + 1), g === 46 ? l === -1 ? l = m : f !== 1 && (f = 1) : l !== -1 && (f = -1); else if (!u) { c = m + 1; break; } } return l === -1 || h === -1 || f === 0 || f === 1 && l === h - 1 && l === c + 1 ? "" : o.slice(l, h); }, format: function(o) { if (o === null || typeof o != "object") throw new TypeError('The "pathObject" argument must be of type Object. Received type ' + typeof o); return function(l, c) { var h = c.dir || c.root, u = c.base || (c.name || "") + (c.ext || ""); return h ? h === c.root ? h + u : h + "/" + u : u; }(0, o); }, parse: function(o) { i(o); var l = { root: "", dir: "", base: "", ext: "", name: "" }; if (o.length === 0) return l; var c, h = o.charCodeAt(0), u = h === 47; u ? (l.root = "/", c = 1) : c = 0; for (var f = -1, m = 0, g = -1, b = !0, y = o.length - 1, k = 0; y >= c; --y) if ((h = o.charCodeAt(y)) !== 47) g === -1 && (b = !1, g = y + 1), h === 46 ? f === -1 ? f = y : k !== 1 && (k = 1) : f !== -1 && (k = -1); else if (!b) { m = y + 1; break; } return f === -1 || g === -1 || k === 0 || k === 1 && f === g - 1 && f === m + 1 ? g !== -1 && (l.base = l.name = m === 0 && u ? o.slice(1, g) : o.slice(m, g)) : (m === 0 && u ? (l.name = o.slice(1, f), l.base = o.slice(1, g)) : (l.name = o.slice(m, f), l.base = o.slice(m, g)), l.ext = o.slice(f, g)), m > 0 ? l.dir = o.slice(0, m - 1) : u && (l.dir = "/"), l; }, sep: "/", delimiter: ":", win32: null, posix: null }; a.posix = a, r.exports = a; }, 447: (r, i, s) => { var a; if (s.r(i), s.d(i, { URI: () => w, Utils: () => N }), typeof process == "object") a = process.platform === "win32"; else if (typeof navigator == "object") { var o = navigator.userAgent; a = o.indexOf("Windows") >= 0; } var l, c, h = (l = function(_, x) { return (l = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(A, M) { A.__proto__ = M; } || function(A, M) { for (var G in M) Object.prototype.hasOwnProperty.call(M, G) && (A[G] = M[G]); })(_, x); }, function(_, x) { if (typeof x != "function" && x !== null) throw new TypeError("Class extends value " + String(x) + " is not a constructor or null"); function A() { this.constructor = _; } l(_, x), _.prototype = x === null ? Object.create(x) : (A.prototype = x.prototype, new A()); }), u = /^\w[\w\d+.-]*$/, f = /^\//, m = /^\/\//; function g(_, x) { if (!_.scheme && x) throw new Error('[UriError]: Scheme is missing: {scheme: "", authority: "'.concat(_.authority, '", path: "').concat(_.path, '", query: "').concat(_.query, '", fragment: "').concat(_.fragment, '"}')); if (_.scheme && !u.test(_.scheme)) throw new Error("[UriError]: Scheme contains illegal characters."); if (_.path) { if (_.authority) { if (!f.test(_.path)) throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character'); } else if (m.test(_.path)) throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")'); } } var b = "", y = "/", k = /^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/, w = function() { function _(x, A, M, G, J, Q) { Q === void 0 && (Q = !1), typeof x == "object" ? (this.scheme = x.scheme || b, this.authority = x.authority || b, this.path = x.path || b, this.query = x.query || b, this.fragment = x.fragment || b) : (this.scheme = function(Pe, de) { return Pe || de ? Pe : "file"; }(x, Q), this.authority = A || b, this.path = function(Pe, de) { switch (Pe) { case "https": case "http": case "file": de ? de[0] !== y && (de = y + de) : de = y; } return de; }(this.scheme, M || b), this.query = G || b, this.fragment = J || b, g(this, Q)); } return _.isUri = function(x) { return x instanceof _ || !!x && typeof x.authority == "string" && typeof x.fragment == "string" && typeof x.path == "string" && typeof x.query == "string" && typeof x.scheme == "string" && typeof x.fsPath == "string" && typeof x.with == "function" && typeof x.toString == "function"; }, Object.defineProperty(_.prototype, "fsPath", { get: function() { return W(this, !1); }, enumerable: !1, configurable: !0 }), _.prototype.with = function(x) { if (!x) return this; var A = x.scheme, M = x.authority, G = x.path, J = x.query, Q = x.fragment; return A === void 0 ? A = this.scheme : A === null && (A = b), M === void 0 ? M = this.authority : M === null && (M = b), G === void 0 ? G = this.path : G === null && (G = b), J === void 0 ? J = this.query : J === null && (J = b), Q === void 0 ? Q = this.fragment : Q === null && (Q = b), A === this.scheme && M === this.authority && G === this.path && J === this.query && Q === this.fragment ? this : new F(A, M, G, J, Q); }, _.parse = function(x, A) { A === void 0 && (A = !1); var M = k.exec(x); return M ? new F(M[2] || b, D(M[4] || b), D(M[5] || b), D(M[7] || b), D(M[9] || b), A) : new F(b, b, b, b, b); }, _.file = function(x) { var A = b; if (a && (x = x.replace(/\\/g, y)), x[0] === y && x[1] === y) { var M = x.indexOf(y, 2); M === -1 ? (A = x.substring(2), x = y) : (A = x.substring(2, M), x = x.substring(M) || y); } return new F("file", A, x, b, b); }, _.from = function(x) { var A = new F(x.scheme, x.authority, x.path, x.query, x.fragment); return g(A, !0), A; }, _.prototype.toString = function(x) { return x === void 0 && (x = !1), H(this, x); }, _.prototype.toJSON = function() { return this; }, _.revive = function(x) { if (x) { if (x instanceof _) return x; var A = new F(x); return A._formatted = x.external, A._fsPath = x._sep === S ? x.fsPath : null, A; } return x; }, _; }(), S = a ? 1 : void 0, F = function(_) { function x() { var A = _ !== null && _.apply(this, arguments) || this; return A._formatted = null, A._fsPath = null, A; } return h(x, _), Object.defineProperty(x.prototype, "fsPath", { get: function() { return this._fsPath || (this._fsPath = W(this, !1)), this._fsPath; }, enumerable: !1, configurable: !0 }), x.prototype.toString = function(A) { return A === void 0 && (A = !1), A ? H(this, !0) : (this._formatted || (this._formatted = H(this, !1)), this._formatted); }, x.prototype.toJSON = function() { var A = { $mid: 1 }; return this._fsPath && (A.fsPath = this._fsPath, A._sep = S), this._formatted && (A.external = this._formatted), this.path && (A.path = this.path), this.scheme && (A.scheme = this.scheme), this.authority && (A.authority = this.authority), this.query && (A.query = this.query), this.fragment && (A.fragment = this.fragment), A; }, x; }(w), E = ((c = {})[58] = "%3A", c[47] = "%2F", c[63] = "%3F", c[35] = "%23", c[91] = "%5B", c[93] = "%5D", c[64] = "%40", c[33] = "%21", c[36] = "%24", c[38] = "%26", c[39] = "%27", c[40] = "%28", c[41] = "%29", c[42] = "%2A", c[43] = "%2B", c[44] = "%2C", c[59] = "%3B", c[61] = "%3D", c[32] = "%20", c); function P(_, x) { for (var A = void 0, M = -1, G = 0; G < _.length; G++) { var J = _.charCodeAt(G); if (J >= 97 && J <= 122 || J >= 65 && J <= 90 || J >= 48 && J <= 57 || J === 45 || J === 46 || J === 95 || J === 126 || x && J === 47) M !== -1 && (A += encodeURIComponent(_.substring(M, G)), M = -1), A !== void 0 && (A += _.charAt(G)); else { A === void 0 && (A = _.substr(0, G)); var Q = E[J]; Q !== void 0 ? (M !== -1 && (A += encodeURIComponent(_.substring(M, G)), M = -1), A += Q) : M === -1 && (M = G); } } return M !== -1 && (A += encodeURIComponent(_.substring(M))), A !== void 0 ? A : _; } function T(_) { for (var x = void 0, A = 0; A < _.length; A++) { var M = _.charCodeAt(A); M === 35 || M === 63 ? (x === void 0 && (x = _.substr(0, A)), x += E[M]) : x !== void 0 && (x += _[A]); } return x !== void 0 ? x : _; } function W(_, x) { var A; return A = _.authority && _.path.length > 1 && _.scheme === "file" ? "//".concat(_.authority).concat(_.path) : _.path.charCodeAt(0) === 47 && (_.path.charCodeAt(1) >= 65 && _.path.charCodeAt(1) <= 90 || _.path.charCodeAt(1) >= 97 && _.path.charCodeAt(1) <= 122) && _.path.charCodeAt(2) === 58 ? x ? _.path.substr(1) : _.path[1].toLowerCase() + _.path.substr(2) : _.path, a && (A = A.replace(/\//g, "\\")), A; } function H(_, x) { var A = x ? T : P, M = "", G = _.scheme, J = _.authority, Q = _.path, Pe = _.query, de = _.fragment; if (G && (M += G, M += ":"), (J || G === "file") && (M += y, M += y), J) { var Fe = J.indexOf("@"); if (Fe !== -1) { var tt = J.substr(0, Fe); J = J.substr(Fe + 1), (Fe = tt.indexOf(":")) === -1 ? M += A(tt, !1) : (M += A(tt.substr(0, Fe), !1), M += ":", M += A(tt.substr(Fe + 1), !1)), M += "@"; } (Fe = (J = J.toLowerCase()).indexOf(":")) === -1 ? M += A(J, !1) : (M += A(J.substr(0, Fe), !1), M += J.substr(Fe)); } if (Q) { if (Q.length >= 3 && Q.charCodeAt(0) === 47 && Q.charCodeAt(2) === 58) (nt = Q.charCodeAt(1)) >= 65 && nt <= 90 && (Q = "/".concat(String.fromCharCode(nt + 32), ":").concat(Q.substr(3))); else if (Q.length >= 2 && Q.charCodeAt(1) === 58) { var nt; (nt = Q.charCodeAt(0)) >= 65 && nt <= 90 && (Q = "".concat(String.fromCharCode(nt + 32), ":").concat(Q.substr(2))); } M += A(Q, !0); } return Pe && (M += "?", M += A(Pe, !1)), de && (M += "#", M += x ? de : P(de, !1)), M; } function re(_) { try { return decodeURIComponent(_); } catch { return _.length > 3 ? _.substr(0, 3) + re(_.substr(3)) : _; } } var X = /(%[0-9A-Za-z][0-9A-Za-z])+/g; function D(_) { return _.match(X) ? _.replace(X, function(x) { return re(x); }) : _; } var N, L = s(470), I = function(_, x, A) { if (A || arguments.length === 2) for (var M, G = 0, J = x.length; G < J; G++) !M && G in x || (M || (M = Array.prototype.slice.call(x, 0, G)), M[G] = x[G]); return _.concat(M || Array.prototype.slice.call(x)); }, O = L.posix || L; (function(_) { _.joinPath = function(x) { for (var A = [], M = 1; M < arguments.length; M++) A[M - 1] = arguments[M]; return x.with({ path: O.join.apply(O, I([x.path], A, !1)) }); }, _.resolvePath = function(x) { for (var A = [], M = 1; M < arguments.length; M++) A[M - 1] = arguments[M]; var G = x.path || "/"; return x.with({ path: O.resolve.apply(O, I([G], A, !1)) }); }, _.dirname = function(x) { var A = O.dirname(x.path); return A.length === 1 && A.charCodeAt(0) === 46 ? x : x.with({ path: A }); }, _.basename = function(x) { return O.basename(x.path); }, _.extname = function(x) { return O.extname(x.path); }; })(N || (N = {})); } }, e = {}; function n(r) { if (e[r]) return e[r].exports; var i = e[r] = { exports: {} }; return t[r](i, i.exports, n), i.exports; } return n.d = (r, i) => { for (var s in i) n.o(i, s) && !n.o(r, s) && Object.defineProperty(r, s, { enumerable: !0, get: i[s] }); }, n.o = (r, i) => Object.prototype.hasOwnProperty.call(r, i), n.r = (r) => { typeof Symbol < "u" && Symbol.toStringTag && Object.defineProperty(r, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(r, "__esModule", { value: !0 }); }, n(447); })(); var { URI: Zi, Utils: Ai } = Bl, Uu = function(t, e, n) { if (n || arguments.length === 2) for (var r = 0, i = e.length, s; r < i; r++) (s || !(r in e)) && (s || (s = Array.prototype.slice.call(e, 0, r)), s[r] = e[r]); return t.concat(s || Array.prototype.slice.call(e)); }; function Or(t) { return Ai.dirname(Zi.parse(t)).toString(); } function Ni(t) { for (var e = [], n = 1; n < arguments.length; n++) e[n - 1] = arguments[n]; return Ai.joinPath.apply(Ai, Uu([Zi.parse(t)], e, !1)).toString(); } var Io = function(t, e, n, r) { function i(s) { return s instanceof n ? s : new n(function(a) { a(s); }); } return new (n || (n = Promise))(function(s, a) { function o(h) { try { c(r.next(h)); } catch (u) { a(u); } } function l(h) { try { c(r.throw(h)); } catch (u) { a(u); } } function c(h) { h.done ? s(h.value) : i(h.value).then(o, l); } c((r = r.apply(t, e || [])).next()); }); }, To = function(t, e) { var n = { label: 0, sent: function() { if (s[0] & 1) throw s[1]; return s[1]; }, trys: [], ops: [] }, r, i, s, a; return a = { next: o(0), throw: o(1), return: o(2) }, typeof Symbol == "function" && (a[Symbol.iterator] = function() { return this; }), a; function o(c) { return function(h) { return l([c, h]); }; } function l(c) { if (r) throw new TypeError("Generator is already executing."); for (; n; ) try { if (r = 1, i && (s = c[0] & 2 ? i.return : c[0] ? i.throw || ((s = i.return) && s.call(i), 0) : i.next) && !(s = s.call(i, c[1])).done) return s; switch (i = 0, s && (c = [c[0] & 2, s.value]), c[0]) { case 0: case 1: s = c; break; case 4: return n.label++, { value: c[1], done: !1 }; case 5: n.label++, i = c[1], c = [0]; continue; case 7: c = n.ops.pop(), n.trys.pop(); continue; default: if (s = n.trys, !(s = s.length > 0 && s[s.length - 1]) && (c[0] === 6 || c[0] === 2)) { n = 0; continue; } if (c[0] === 3 && (!s || c[1] > s[0] && c[1] < s[3])) { n.label = c[1]; break; } if (c[0] === 6 && n.label < s[1]) { n.label = s[1], s = c; break; } if (s && n.label < s[2]) { n.label = s[2], n.ops.push(c); break; } s[2] && n.ops.pop(), n.trys.pop(); continue; } c = e.call(t, n); } catch (h) { c = [6, h], i = 0; } finally { r = s = 0; } if (c[0] & 5) throw c[1]; return { value: c[0] ? c[1] : void 0, done: !0 }; } }, Vu = function() { function t(e) { this.readDirectory = e, this.literalCompletions = [], this.importCompletions = []; } return t.prototype.onCssURILiteralValue = function(e) { this.literalCompletions.push(e); }, t.prototype.onCssImportPath = function(e) { this.importCompletions.push(e); }, t.prototype.computeCompletions = function(e, n) { return Io(this, void 0, void 0, function() { var r, i, s, a, o, b, l, c, h, S, u, f, m, g, b, y, k, w, S; return To(this, function(F) { switch (F.label) { case 0: r = { items: [], isIncomplete: !1 }, i = 0, s = this.literalCompletions, F.label = 1; case 1: return i < s.length ? (a = s[i], o = a.uriValue, b = Ur(o), b === "." || b === ".." ? (r.isIncomplete = !0, [3, 4]) : [3, 2]) : [3, 5]; case 2: return [4, this.providePathSuggestions(o, a.position, a.range, e, n)]; case 3: for (l = F.sent(), c = 0, h = l; c < h.length; c++) S = h[c], r.items.push(S); F.label = 4; case 4: return i++, [3, 1]; case 5: u = 0, f = this.importCompletions, F.label = 6; case 6: return u < f.length ? (m = f[u], g = m.pathValue, b = Ur(g), b === "." || b === ".." ? (r.isIncomplete = !0, [3, 9]) : [3, 7]) : [3, 10]; case 7: return [4, this.providePathSuggestions(g, m.position, m.range, e, n)]; case 8: for (y = F.sent(), e.languageId === "scss" && y.forEach(function(E) { ge(E.label, "_") && kl(E.label, ".scss") && (E.textEdit ? E.textEdit.newText = E.label.slice(1, -5) : E.label = E.label.slice(1, -5)); }), k = 0, w = y; k < w.length; k++) S = w[k], r.items.push(S); F.label = 9; case 9: return u++, [3, 6]; case 10: return [2, r]; } }); }); }, t.prototype.providePathSuggestions = function(e, n, r, i, s) { return Io(this, void 0, void 0, function() { var a, o, l, c, h, u, f, m, g, b, y, k, w, S, F; return To(this, function(E) { switch (E.label) { case 0: if (a = Ur(e), o = ge(e, "'") || ge(e, '"'), l = o ? a.slice(0, n.character - (r.start.character + 1)) : a.slice(0, n.character - r.start.character), c = i.uri, h = o ? $u(r, 1, -1) : r, u = qu(l, a, h), f = l.substring(0, l.lastIndexOf("/") + 1), m = s.resolveReference(f || ".", c), !m) return [3, 4]; E.label = 1; case 1: return E.trys.push([1, 3, , 4]), g = [], [4, this.readDirectory(m)]; case 2: for (b = E.sent(), y = 0, k = b; y < k.length; y++) w = k[y], S = w[0], F = w[1], S.charCodeAt(0) !== Bu && (F === zn.Directory || Ni(m, S) !== c) && g.push(ju(S, F === zn.Directory, u)); return [2, g]; case 3: return E.sent(), [3, 4]; case 4: return [2, []]; } }); }); }, t; }(), Bu = ".".charCodeAt(0); function Ur(t) { return ge(t, "'") || ge(t, '"') ? t.slice(1, -1) : t; } function qu(t, e, n) { var r, i = t.lastIndexOf("/"); if (i === -1) r = n; else { var s = e.slice(i + 1), a = xr(n.end, -s.length), o = s.indexOf(" "), l = void 0; o !== -1 ? l = xr(a, o) : l = n.end, r = ie.create(a, l); } return r; } function ju(t, e, n) { return e ? (t = t + "/", { label: Yn(t), kind: j.Folder, textEdit: $.replace(n, Yn(t)), command: { title: "Suggest", command: "editor.action.triggerSuggest" } }) : { label: Yn(t), kind: j.File, textEdit: $.replace(n, Yn(t)) }; } function Yn(t) { return t.replace(/(\s|\(|\)|,|"|')/g, "\\$1"); } function xr(t, e) { return Ee.create(t.line, t.character + e); } function $u(t, e, n) { var r = xr(t.start, e), i = xr(t.end, n); return ie.create(r, i); } var Hu = function(t, e, n, r) { function i(s) { return s instanceof n ? s : new n(function(a) { a(s); }); } return new (n || (n = Promise))(function(s, a) { function o(h) { try { c(r.next(h)); } catch (u) { a(u); } } function l(h) { try { c(r.throw(h)); } catch (u) { a(u); } } function c(h) { h.done ? s(h.value) : i(h.value).then(o, l); } c((r = r.apply(t, e || [])).next()); }); }, Gu = function(t, e) { var n = { label: 0, sent: function() { if (s[0] & 1) throw s[1]; return s[1]; }, trys: [], ops: [] }, r, i, s, a; return a = { next: o(0), throw: o(1), return: o(2) }, typeof Symbol == "function" && (a[Symbol.iterator] = function() { return this; }), a; function o(c) { return function(h) { return l([c, h]); }; } function l(c) { if (r) throw new TypeError("Generator is already executing."); for (; n; ) try { if (r = 1, i && (s = c[0] & 2 ? i.return : c[0] ? i.throw || ((s = i.return) && s.call(i), 0) : i.next) && !(s = s.call(i, c[1])).done) return s; switch (i = 0, s && (c = [c[0] & 2, s.value]), c[0]) { case 0: case 1: s = c; break; case 4: return n.label++, { value: c[1], done: !1 }; case 5: n.label++, i = c[1], c = [0]; continue; case 7: c = n.ops.pop(), n.trys.pop(); continue; default: if (s = n.trys, !(s = s.length > 0 && s[s.length - 1]) && (c[0] === 6 || c[0] === 2)) { n = 0; continue; } if (c[0] === 3 && (!s || c[1] > s[0] && c[1] < s[3])) { n.label = c[1]; break; } if (c[0] === 6 && n.label < s[1]) { n.label = s[1], s = c; break; } if (s && n.label < s[2]) { n.label = s[2], n.ops.push(c); break; } s[2] && n.ops.pop(), n.trys.pop(); continue; } c = e.call(t, n); } catch (h) { c = [6, h], i = 0; } finally { r = s = 0; } if (c[0] & 5) throw c[1]; return { value: c[0] ? c[1] : void 0, done: !0 }; } }, Ju = Ge(), rt = ze.Snippet, Wo = { title: "Suggest", command: "editor.action.triggerSuggest" }, Je; (function(t) { t.Enums = " ", t.Normal = "d", t.VendorPrefixed = "x", t.Term = "y", t.Variable = "z"; })(Je || (Je = {})); var es = function() { function t(e, n, r) { e === void 0 && (e = null), this.variablePrefix = e, this.lsOptions = n, this.cssDataManager = r, this.completionParticipants = []; } return t.prototype.configure = function(e) { this.defaultSettings = e; }, t.prototype.getSymbolContext = function() { return this.symbolContext || (this.symbolContext = new Di(this.styleSheet)), this.symbolContext; }, t.prototype.setCompletionParticipants = function(e) { this.completionParticipants = e || []; }, t.prototype.doComplete2 = function(e, n, r, i, s) { return s === void 0 && (s = this.defaultSettings), Hu(this, void 0, void 0, function() { var a, o, l, c; return Gu(this, function(h) { switch (h.label) { case 0: if (!this.lsOptions.fileSystemProvider || !this.lsOptions.fileSystemProvider.readDirectory) return [2, this.doComplete(e, n, r, s)]; a = new Vu(this.lsOptions.fileSystemProvider.readDirectory), o = this.completionParticipants, this.completionParticipants = [a].concat(o), l = this.doComplete(e, n, r, s), h.label = 1; case 1: return h.trys.push([1, , 3, 4]), [4, a.computeCompletions(e, i)]; case 2: return c = h.sent(), [2, { isIncomplete: l.isIncomplete || c.isIncomplete, items: c.items.concat(l.items) }]; case 3: return this.completionParticipants = o, [7]; case 4: return [2]; } }); }); }, t.prototype.doComplete = function(e, n, r, i) { this.offset = e.offsetAt(n), this.position = n, this.currentWord = Qu(e, this.offset), this.defaultReplaceRange = ie.create(Ee.create(this.position.line, this.position.character - this.currentWord.length), this.position), this.textDocument = e, this.styleSheet = r, this.documentSettings = i; try { var s = { isIncomplete: !1, items: [] }; this.nodePath = qi(this.styleSheet, this.offset); for (var a = this.nodePath.length - 1; a >= 0; a--) { var o = this.nodePath[a]; if (o instanceof Hi) this.getCompletionsForDeclarationProperty(o.getParent(), s); else if (o instanceof Nl) o.parent instanceof yi ? this.getVariableProposals(null, s) : this.getCompletionsForExpression(o, s); else if (o instanceof Ht) { var l = o.findAParent(v.ExtendsReference, v.Ruleset); if (l) if (l.type === v.ExtendsReference) this.getCompletionsForExtendsReference(l, o, s); else { var c = l; this.getCompletionsForSelector(c, c && c.isNested(), s); } } else if (o instanceof Qt) this.getCompletionsForFunctionArgument(o, o.getParent(), s); else if (o instanceof ji) this.getCompletionsForDeclarations(o, s); else if (o instanceof Rr) this.getCompletionsForVariableDeclaration(o, s); else if (o instanceof $t) this.getCompletionsForRuleSet(o, s); else if (o instanceof yi) this.getCompletionsForInterpolation(o, s); else if (o instanceof dr) this.getCompletionsForFunctionDeclaration(o, s); else if (o instanceof ur) this.getCompletionsForMixinReference(o, s); else if (o instanceof On) this.getCompletionsForFunctionArgument(null, o, s); else if (o instanceof vi) this.getCompletionsForSupports(o, s); else if (o instanceof vn) this.getCompletionsForSupportsCondition(o, s); else if (o instanceof Rn) this.getCompletionsForExtendsReference(o, null, s); else if (o.type === v.URILiteral) this.getCompletionForUriLiteralValue(o, s); else if (o.parent === null) this.getCompletionForTopLevel(s); else if (o.type === v.StringLiteral && this.isImportPathParent(o.parent.type)) this.getCompletionForImportPath(o, s); else continue; if (s.items.length > 0 || this.offset > o.offset) return this.finalize(s); } return this.getCompletionsForStylesheet(s), s.items.length === 0 && this.variablePrefix && this.currentWord.indexOf(this.variablePrefix) === 0 && this.getVariableProposals(null, s), this.finalize(s); } finally { this.position = null, this.currentWord = null, this.textDocument = null, this.styleSheet = null, this.symbolContext = null, this.defaultReplaceRange = null, this.nodePath = null; } }, t.prototype.isImportPathParent = function(e) { return e === v.Import; }, t.prototype.finalize = function(e) { return e; }, t.prototype.findInNodePath = function() { for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; for (var r = this.nodePath.length - 1; r >= 0; r--) { var i = this.nodePath[r]; if (e.indexOf(i.type) !== -1) return i; } return null; }, t.prototype.getCompletionsForDeclarationProperty = function(e, n) { return this.getPropertyProposals(e, n); }, t.prototype.getPropertyProposals = function(e, n) { var r = this, i = this.isTriggerPropertyValueCompletionEnabled, s = this.isCompletePropertyWithSemicolonEnabled, a = this.cssDataManager.getProperties(); return a.forEach(function(o) { var l, c, h = !1; e ? (l = r.getCompletionRange(e.getProperty()), c = o.name, We(e.colonPosition) || (c += ": ", h = !0)) : (l = r.getCompletionRange(null), c = o.name + ": ", h = !0), !e && s && (c += "$0;"), e && !e.semicolonPosition && s && r.offset >= r.textDocument.offsetAt(l.end) && (c += "$0;"); var u = { label: o.name, documentation: bt(o, r.doesSupportMarkdown()), tags: un(o) ? [Et.Deprecated] : [], textEdit: $.replace(l, c), insertTextFormat: ze.Snippet, kind: j.Property }; o.restrictions || (h = !1), i && h && (u.command = Wo); var f = typeof o.relevance == "number" ? Math.min(Math.max(o.relevance, 0), 99) : 50, m = (255 - f).toString(16), g = ge(o.name, "-") ? Je.VendorPrefixed : Je.Normal; u.sortText = g + "_" + m, n.items.push(u); }), this.completionParticipants.forEach(function(o) { o.onCssProperty && o.onCssProperty({ propertyName: r.currentWord, range: r.defaultReplaceRange }); }), n; }, Object.defineProperty(t.prototype, "isTriggerPropertyValueCompletionEnabled", { get: function() { var e, n; return (n = (e = this.documentSettings) === null || e === void 0 ? void 0 : e.triggerPropertyValueCompletion) !== null && n !== void 0 ? n : !0; }, enumerable: !1, configurable: !0 }), Object.defineProperty(t.prototype, "isCompletePropertyWithSemicolonEnabled", { get: function() { var e, n; return (n = (e = this.documentSettings) === null || e === void 0 ? void 0 : e.completePropertyWithSemicolon) !== null && n !== void 0 ? n : !0; }, enumerable: !1, configurable: !0 }), t.prototype.getCompletionsForDeclarationValue = function(e, n) { for (var r = this, i = e.getFullPropertyName(), s = this.cssDataManager.getProperty(i), a = e.getValue() || null; a && a.hasChildren(); ) a = a.findChildAtOffset(this.offset, !1); if (this.completionParticipants.forEach(function(g) { g.onCssPropertyValue && g.onCssPropertyValue({ propertyName: i, propertyValue: r.currentWord, range: r.getCompletionRange(a) }); }), s) { if (s.restrictions) for (var o = 0, l = s.restrictions; o < l.length; o++) { var c = l[o]; switch (c) { case "color": this.getColorProposals(s, a, n); break; case "position": this.getPositionProposals(s, a, n); break; case "repeat": this.getRepeatStyleProposals(s, a, n); break; case "line-style": this.getLineStyleProposals(s, a, n); break; case "line-width": this.getLineWidthProposals(s, a, n); break; case "geometry-box": this.getGeometryBoxProposals(s, a, n); break; case "box": this.getBoxProposals(s, a, n); break; case "image": this.getImageProposals(s, a, n); break; case "timing-function": this.getTimingFunctionProposals(s, a, n); break; case "shape": this.getBasicShapeProposals(s, a, n); break; } } this.getValueEnumProposals(s, a, n), this.getCSSWideKeywordProposals(s, a, n), this.getUnitProposals(s, a, n); } else for (var h = Xu(this.styleSheet, e), u = 0, f = h.getEntries(); u < f.length; u++) { var m = f[u]; n.items.push({ label: m, textEdit: $.replace(this.getCompletionRange(a), m), kind: j.Value }); } return this.getVariableProposals(a, n), this.getTermProposals(s, a, n), n; }, t.prototype.getValueEnumProposals = function(e, n, r) { if (e.values) for (var i = 0, s = e.values; i < s.length; i++) { var a = s[i], o = a.name, l = void 0; if (kl(o, ")")) { var c = o.lastIndexOf("("); c !== -1 && (o = o.substr(0, c) + "($1)", l = rt); } var h = Je.Enums; ge(a.name, "-") && (h += Je.VendorPrefixed); var u = { label: a.name, documentation: bt(a, this.doesSupportMarkdown()), tags: un(e) ? [Et.Deprecated] : [], textEdit: $.replace(this.getCompletionRange(n), o), sortText: h, kind: j.Value, insertTextFormat: l }; r.items.push(u); } return r; }, t.prototype.getCSSWideKeywordProposals = function(e, n, r) { for (var i in Ao) r.items.push({ label: i, documentation: Ao[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); for (var s in No) { var a = Wt(s); r.items.push({ label: s, documentation: No[s], textEdit: $.replace(this.getCompletionRange(n), a), kind: j.Function, insertTextFormat: rt, command: ge(s, "var") ? Wo : void 0 }); } return r; }, t.prototype.getCompletionsForInterpolation = function(e, n) { return this.offset >= e.offset + 2 && this.getVariableProposals(null, n), n; }, t.prototype.getVariableProposals = function(e, n) { for (var r = this.getSymbolContext().findSymbolsAtOffset(this.offset, Z.Variable), i = 0, s = r; i < s.length; i++) { var a = s[i], o = ge(a.name, "--") ? "var(".concat(a.name, ")") : a.name, l = { label: a.name, documentation: a.value ? Ua(a.value) : a.value, textEdit: $.replace(this.getCompletionRange(e), o), kind: j.Variable, sortText: Je.Variable }; if (typeof l.documentation == "string" && Oo(l.documentation) && (l.kind = j.Color), a.node.type === v.FunctionParameter) { var c = a.node.getParent(); c.type === v.MixinDeclaration && (l.detail = Ju("completion.argument", "argument from '{0}'", c.getName())); } n.items.push(l); } return n; }, t.prototype.getVariableProposalsForCSSVarFunction = function(e) { var n = new Mi(); this.styleSheet.acceptVisitor(new Ku(n, this.offset)); for (var r = this.getSymbolContext().findSymbolsAtOffset(this.offset, Z.Variable), i = 0, s = r; i < s.length; i++) { var a = s[i]; if (ge(a.name, "--")) { var o = { label: a.name, documentation: a.value ? Ua(a.value) : a.value, textEdit: $.replace(this.getCompletionRange(null), a.name), kind: j.Variable }; typeof o.documentation == "string" && Oo(o.documentation) && (o.kind = j.Color), e.items.push(o); } n.remove(a.name); } for (var l = 0, c = n.getEntries(); l < c.length; l++) { var h = c[l]; if (ge(h, "--")) { var o = { label: h, textEdit: $.replace(this.getCompletionRange(null), h), kind: j.Variable }; e.items.push(o); } } return e; }, t.prototype.getUnitProposals = function(e, n, r) { var i = "0"; if (this.currentWord.length > 0) { var s = this.currentWord.match(/^-?\d[\.\d+]*/); s && (i = s[0], r.isIncomplete = i.length === this.currentWord.length); } else this.currentWord.length === 0 && (r.isIncomplete = !0); if (n && n.parent && n.parent.type === v.Term && (n = n.getParent()), e.restrictions) for (var a = 0, o = e.restrictions; a < o.length; a++) { var l = o[a], c = Ol[l]; if (c) for (var h = 0, u = c; h < u.length; h++) { var f = u[h], m = i + f; r.items.push({ label: m, textEdit: $.replace(this.getCompletionRange(n), m), kind: j.Unit }); } } return r; }, t.prototype.getCompletionRange = function(e) { if (e && e.offset <= this.offset && this.offset <= e.end) { var n = e.end !== -1 ? this.textDocument.positionAt(e.end) : this.position, r = this.textDocument.positionAt(e.offset); if (r.line === n.line) return ie.create(r, n); } return this.defaultReplaceRange; }, t.prototype.getColorProposals = function(e, n, r) { for (var i in wr) r.items.push({ label: i, documentation: wr[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Color }); for (var i in xo) r.items.push({ label: i, documentation: xo[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); var s = new Mi(); this.styleSheet.acceptVisitor(new Yu(s, this.offset)); for (var a = 0, o = s.getEntries(); a < o.length; a++) { var i = o[a]; r.items.push({ label: i, textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Color }); } for (var l = function(m) { var g = 1, b = function(k, w) { return "${" + g++ + ":" + w + "}"; }, y = m.func.replace(/\[?\$(\w+)\]?/g, b); r.items.push({ label: m.func.substr(0, m.func.indexOf("(")), detail: m.func, documentation: m.desc, textEdit: $.replace(c.getCompletionRange(n), y), insertTextFormat: rt, kind: j.Function }); }, c = this, h = 0, u = ku; h < u.length; h++) { var f = u[h]; l(f); } return r; }, t.prototype.getPositionProposals = function(e, n, r) { for (var i in _o) r.items.push({ label: i, documentation: _o[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); return r; }, t.prototype.getRepeatStyleProposals = function(e, n, r) { for (var i in Ro) r.items.push({ label: i, documentation: Ro[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); return r; }, t.prototype.getLineStyleProposals = function(e, n, r) { for (var i in Fo) r.items.push({ label: i, documentation: Fo[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); return r; }, t.prototype.getLineWidthProposals = function(e, n, r) { for (var i = 0, s = Mu; i < s.length; i++) { var a = s[i]; r.items.push({ label: a, textEdit: $.replace(this.getCompletionRange(n), a), kind: j.Value }); } return r; }, t.prototype.getGeometryBoxProposals = function(e, n, r) { for (var i in Do) r.items.push({ label: i, documentation: Do[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); return r; }, t.prototype.getBoxProposals = function(e, n, r) { for (var i in Eo) r.items.push({ label: i, documentation: Eo[i], textEdit: $.replace(this.getCompletionRange(n), i), kind: j.Value }); return r; }, t.prototype.getImageProposals = function(e, n, r) { for (var i in Mo) { var s = Wt(i); r.items.push({ label: i, documentation: Mo[i], textEdit: $.replace(this.getCompletionRange(n), s), kind: j.Function, insertTextFormat: i !== s ? rt : void 0 }); } return r; }, t.prototype.getTimingFunctionProposals = function(e, n, r) { for (var i in zo) { var s = Wt(i); r.items.push({ label: i, documentation: zo[i], textEdit: $.replace(this.getCompletionRange(n), s), kind: j.Function, insertTextFormat: i !== s ? rt : void 0 }); } return r; }, t.prototype.getBasicShapeProposals = function(e, n, r) { for (var i in Lo) { var s = Wt(i); r.items.push({ label: i, documentation: Lo[i], textEdit: $.replace(this.getCompletionRange(n), s), kind: j.Function, insertTextFormat: i !== s ? rt : void 0 }); } return r; }, t.prototype.getCompletionsForStylesheet = function(e) { var n = this.styleSheet.findFirstChildBeforeOffset(this.offset); return n ? n instanceof $t ? this.getCompletionsForRuleSet(n, e) : n instanceof vi ? this.getCompletionsForSupports(n, e) : e : this.getCompletionForTopLevel(e); }, t.prototype.getCompletionForTopLevel = function(e) { var n = this; return this.cssDataManager.getAtDirectives().forEach(function(r) { e.items.push({ label: r.name, textEdit: $.replace(n.getCompletionRange(null), r.name), documentation: bt(r, n.doesSupportMarkdown()), tags: un(r) ? [Et.Deprecated] : [], kind: j.Keyword }); }), this.getCompletionsForSelector(null, !1, e), e; }, t.prototype.getCompletionsForRuleSet = function(e, n) { var r = e.getDeclarations(), i = r && r.endsWith("}") && this.offset >= r.end; if (i) return this.getCompletionForTopLevel(n); var s = !r || this.offset <= r.offset; return s ? this.getCompletionsForSelector(e, e.isNested(), n) : this.getCompletionsForDeclarations(e.getDeclarations(), n); }, t.prototype.getCompletionsForSelector = function(e, n, r) { var i = this, s = this.findInNodePath(v.PseudoSelector, v.IdentifierSelector, v.ClassSelector, v.ElementNameSelector); !s && this.hasCharacterAtPosition(this.offset - this.currentWord.length - 1, ":") && (this.currentWord = ":" + this.currentWord, this.hasCharacterAtPosition(this.offset - this.currentWord.length - 1, ":") && (this.currentWord = ":" + this.currentWord), this.defaultReplaceRange = ie.create(Ee.create(this.position.line, this.position.character - this.currentWord.length), this.position)); var a = this.cssDataManager.getPseudoClasses(); a.forEach(function(y) { var k = Wt(y.name), w = { label: y.name, textEdit: $.replace(i.getCompletionRange(s), k), documentation: bt(y, i.doesSupportMarkdown()), tags: un(y) ? [Et.Deprecated] : [], kind: j.Function, insertTextFormat: y.name !== k ? rt : void 0 }; ge(y.name, ":-") && (w.sortText = Je.VendorPrefixed), r.items.push(w); }); var o = this.cssDataManager.getPseudoElements(); if (o.forEach(function(y) { var k = Wt(y.name), w = { label: y.name, textEdit: $.replace(i.getCompletionRange(s), k), documentation: bt(y, i.doesSupportMarkdown()), tags: un(y) ? [Et.Deprecated] : [], kind: j.Function, insertTextFormat: y.name !== k ? rt : void 0 }; ge(y.name, "::-") && (w.sortText = Je.VendorPrefixed), r.items.push(w); }), !n) { for (var l = 0, c = zu; l < c.length; l++) { var h = c[l]; r.items.push({ label: h, textEdit: $.replace(this.getCompletionRange(s), h), kind: j.Keyword }); } for (var u = 0, f = Lu; u < f.length; u++) { var h = f[u]; r.items.push({ label: h, textEdit: $.replace(this.getCompletionRange(s), h), kind: j.Keyword }); } } var m = {}; m[this.currentWord] = !0; var g = this.textDocument.getText(); if (this.styleSheet.accept(function(y) { if (y.type === v.SimpleSelector && y.length > 0) { var k = g.substr(y.offset, y.length); return k.charAt(0) === "." && !m[k] && (m[k] = !0, r.items.push({ label: k, textEdit: $.replace(i.getCompletionRange(s), k), kind: j.Keyword })), !1; } return !0; }), e && e.isNested()) { var b = e.getSelectors().findFirstChildBeforeOffset(this.offset); b && e.getSelectors().getChildren().indexOf(b) === 0 && this.getPropertyProposals(null, r); } return r; }, t.prototype.getCompletionsForDeclarations = function(e, n) { if (!e || this.offset === e.offset) return n; var r = e.findFirstChildBeforeOffset(this.offset); if (!r) return this.getCompletionsForDeclarationProperty(null, n); if (r instanceof $i) { var i = r; if (!We(i.colonPosition) || this.offset <= i.colonPosition) return this.getCompletionsForDeclarationProperty(i, n); if (We(i.semicolonPosition) && i.semicolonPosition < this.offset) return this.offset === i.semicolonPosition + 1 ? n : this.getCompletionsForDeclarationProperty(null, n); if (i instanceof Ze) return this.getCompletionsForDeclarationValue(i, n); } else r instanceof Rn ? this.getCompletionsForExtendsReference(r, null, n) : this.currentWord && this.currentWord[0] === "@" ? this.getCompletionsForDeclarationProperty(null, n) : r instanceof $t && this.getCompletionsForDeclarationProperty(null, n); return n; }, t.prototype.getCompletionsForVariableDeclaration = function(e, n) { return this.offset && We(e.colonPosition) && this.offset > e.colonPosition && this.getVariableProposals(e.getValue(), n), n; }, t.prototype.getCompletionsForExpression = function(e, n) { var r = e.getParent(); if (r instanceof Qt) return this.getCompletionsForFunctionArgument(r, r.getParent(), n), n; var i = e.findParent(v.Declaration); if (!i) return this.getTermProposals(void 0, null, n), n; var s = e.findChildAtOffset(this.offset, !0); return s ? s instanceof Yi || s instanceof Ue ? this.getCompletionsForDeclarationValue(i, n) : n : this.getCompletionsForDeclarationValue(i, n); }, t.prototype.getCompletionsForFunctionArgument = function(e, n, r) { var i = n.getIdentifier(); return i && i.matches("var") && (!n.getArguments().hasChildren() || n.getArguments().getChild(0) === e) && this.getVariableProposalsForCSSVarFunction(r), r; }, t.prototype.getCompletionsForFunctionDeclaration = function(e, n) { var r = e.getDeclarations(); return r && this.offset > r.offset && this.offset < r.end && this.getTermProposals(void 0, null, n), n; }, t.prototype.getCompletionsForMixinReference = function(e, n) { for (var r = this, i = this.getSymbolContext().findSymbolsAtOffset(this.offset, Z.Mixin), s = 0, a = i; s < a.length; s++) { var o = a[s]; o.node instanceof Fn && n.items.push(this.makeTermProposal(o, o.node.getParameters(), null)); } var l = e.getIdentifier() || null; return this.completionParticipants.forEach(function(c) { c.onCssMixinReference && c.onCssMixinReference({ mixinName: r.currentWord, range: r.getCompletionRange(l) }); }), n; }, t.prototype.getTermProposals = function(e, n, r) { for (var i = this.getSymbolContext().findSymbolsAtOffset(this.offset, Z.Function), s = 0, a = i; s < a.length; s++) { var o = a[s]; o.node instanceof dr && r.items.push(this.makeTermProposal(o, o.node.getParameters(), n)); } return r; }, t.prototype.makeTermProposal = function(e, n, r) { e.node; var i = n.getChildren().map(function(a) { return a instanceof _r ? a.getName() : a.getText(); }), s = e.name + "(" + i.map(function(a, o) { return "${" + (o + 1) + ":" + a + "}"; }).join(", ") + ")"; return { label: e.name, detail: e.name + "(" + i.join(", ") + ")", textEdit: $.replace(this.getCompletionRange(r), s), insertTextFormat: rt, kind: j.Function, sortText: Je.Term }; }, t.prototype.getCompletionsForSupportsCondition = function(e, n) { var r = e.findFirstChildBeforeOffset(this.offset); if (r) { if (r instanceof Ze) return !We(r.colonPosition) || this.offset <= r.colonPosition ? this.getCompletionsForDeclarationProperty(r, n) : this.getCompletionsForDeclarationValue(r, n); if (r instanceof vn) return this.getCompletionsForSupportsCondition(r, n); } return We(e.lParent) && this.offset > e.lParent && (!We(e.rParent) || this.offset <= e.rParent) ? this.getCompletionsForDeclarationProperty(null, n) : n; }, t.prototype.getCompletionsForSupports = function(e, n) { var r = e.getDeclarations(), i = !r || this.offset <= r.offset; if (i) { var s = e.findFirstChildBeforeOffset(this.offset); return s instanceof vn ? this.getCompletionsForSupportsCondition(s, n) : n; } return this.getCompletionForTopLevel(n); }, t.prototype.getCompletionsForExtendsReference = function(e, n, r) { return r; }, t.prototype.getCompletionForUriLiteralValue = function(e, n) { var r, i, s; if (e.hasChildren()) { var o = e.getChild(0); r = o.getText(), i = this.position, s = this.getCompletionRange(o); } else { r = "", i = this.position; var a = this.textDocument.positionAt(e.offset + 4); s = ie.create(a, a); } return this.completionParticipants.forEach(function(l) { l.onCssURILiteralValue && l.onCssURILiteralValue({ uriValue: r, position: i, range: s }); }), n; }, t.prototype.getCompletionForImportPath = function(e, n) { var r = this; return this.completionParticipants.forEach(function(i) { i.onCssImportPath && i.onCssImportPath({ pathValue: e.getText(), position: r.position, range: r.getCompletionRange(e) }); }), n; }, t.prototype.hasCharacterAtPosition = function(e, n) { var r = this.textDocument.getText(); return e >= 0 && e < r.length && r.charAt(e) === n; }, t.prototype.doesSupportMarkdown = function() { var e, n, r; if (!We(this.supportsMarkdown)) { if (!We(this.lsOptions.clientCapabilities)) return this.supportsMarkdown = !0, this.supportsMarkdown; var i = (r = (n = (e = this.lsOptions.clientCapabilities.textDocument) === null || e === void 0 ? void 0 : e.completion) === null || n === void 0 ? void 0 : n.completionItem) === null || r === void 0 ? void 0 : r.documentationFormat; this.supportsMarkdown = Array.isArray(i) && i.indexOf(Ve.Markdown) !== -1; } return this.supportsMarkdown; }, t; }(); function un(t) { return !!(t.status && (t.status === "nonstandard" || t.status === "obsolete")); } var Mi = function() { function t() { this.entries = {}; } return t.prototype.add = function(e) { this.entries[e] = !0; }, t.prototype.remove = function(e) { delete this.entries[e]; }, t.prototype.getEntries = function() { return Object.keys(this.entries); }, t; }(); function Wt(t) { return t.replace(/\(\)$/, "($1)"); } function Xu(t, e) { var n = e.getFullPropertyName(), r = new Mi(); function i(o) { return (o instanceof Ue || o instanceof Yi || o instanceof Xi) && r.add(o.getText()), !0; } function s(o) { var l = o.getFullPropertyName(); return n === l; } function a(o) { if (o instanceof Ze && o !== e && s(o)) { var l = o.getValue(); l && l.accept(i); } return !0; } return t.accept(a), r; } var Yu = function() { function t(e, n) { this.entries = e, this.currentOffset = n; } return t.prototype.visitNode = function(e) { return (e instanceof Xi || e instanceof On && _u(e)) && (this.currentOffset < e.offset || e.end < this.currentOffset) && this.entries.add(e.getText()), !0; }, t; }(), Ku = function() { function t(e, n) { this.entries = e, this.currentOffset = n; } return t.prototype.visitNode = function(e) { return e instanceof Ue && e.isCustomProperty && (this.currentOffset < e.offset || e.end < this.currentOffset) && this.entries.add(e.getText()), !0; }, t; }(); function Qu(t, e) { for (var n = e - 1, r = t.getText(); n >= 0 && ` \r":{[()]},*>+`.indexOf(r.charAt(n)) === -1; ) n--; return r.substring(n + 1, e); } function Oo(t) { return t.toLowerCase() in wr || /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t); } var ql = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Zu = Ge(), ts = function() { function t() { this.parent = null, this.children = null, this.attributes = null; } return t.prototype.findAttribute = function(e) { if (this.attributes) for (var n = 0, r = this.attributes; n < r.length; n++) { var i = r[n]; if (i.name === e) return i.value; } return null; }, t.prototype.addChild = function(e) { e instanceof t && (e.parent = this), this.children || (this.children = []), this.children.push(e); }, t.prototype.append = function(e) { if (this.attributes) { var n = this.attributes[this.attributes.length - 1]; n.value = n.value + e; } }, t.prototype.prepend = function(e) { if (this.attributes) { var n = this.attributes[0]; n.value = e + n.value; } }, t.prototype.findRoot = function() { for (var e = this; e.parent && !(e.parent instanceof en); ) e = e.parent; return e; }, t.prototype.removeChild = function(e) { if (this.children) { var n = this.children.indexOf(e); if (n !== -1) return this.children.splice(n, 1), !0; } return !1; }, t.prototype.addAttr = function(e, n) { this.attributes || (this.attributes = []); for (var r = 0, i = this.attributes; r < i.length; r++) { var s = i[r]; if (s.name === e) { s.value += " " + n; return; } } this.attributes.push({ name: e, value: n }); }, t.prototype.clone = function(e) { e === void 0 && (e = !0); var n = new t(); if (this.attributes) { n.attributes = []; for (var r = 0, i = this.attributes; r < i.length; r++) { var s = i[r]; n.addAttr(s.name, s.value); } } if (e && this.children) { n.children = []; for (var a = 0; a < this.children.length; a++) n.addChild(this.children[a].clone()); } return n; }, t.prototype.cloneWithParent = function() { var e = this.clone(!1); if (this.parent && !(this.parent instanceof en)) { var n = this.parent.cloneWithParent(); n.addChild(e); } return e; }, t; }(), en = function(t) { ql(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return e; }(ts), zi = function(t) { ql(e, t); function e(n) { var r = t.call(this) || this; return r.addAttr("name", n), r; } return e; }(ts), Uo = function() { function t(e) { this.quote = e, this.result = []; } return t.prototype.print = function(e) { this.result = [], e instanceof en ? e.children && this.doPrint(e.children, 0) : this.doPrint([e], 0); var n = this.result.join(` `); return [{ language: "html", value: n }]; }, t.prototype.doPrint = function(e, n) { for (var r = 0, i = e; r < i.length; r++) { var s = i[r]; this.doPrintElement(s, n), s.children && this.doPrint(s.children, n + 1); } }, t.prototype.writeLine = function(e, n) { var r = new Array(e + 1).join(" "); this.result.push(r + n); }, t.prototype.doPrintElement = function(e, n) { var r = e.findAttribute("name"); if (e instanceof zi || r === "…") { this.writeLine(n, r); return; } var i = ["<"]; if (r ? i.push(r) : i.push("element"), e.attributes) for (var s = 0, a = e.attributes; s < a.length; s++) { var o = a[s]; if (o.name !== "name") { i.push(" "), i.push(o.name); var l = o.value; l && (i.push("="), i.push(at.ensure(l, this.quote))); } } i.push(">"), this.writeLine(n, i.join("")); }, t; }(), at; (function(t) { function e(r, i) { return i + n(r) + i; } t.ensure = e; function n(r) { var i = r.match(/^['"](.*)["']$/); return i ? i[1] : r; } t.remove = n; })(at || (at = {})); var Vo = function() { function t() { this.id = 0, this.attr = 0, this.tag = 0; } return t; }(); function jl(t, e) { for (var n = new ts(), r = 0, i = t.getChildren(); r < i.length; r++) { var s = i[r]; switch (s.type) { case v.SelectorCombinator: if (e) { var a = s.getText().split("&"); if (a.length === 1) { n.addAttr("name", a[0]); break; } if (n = e.cloneWithParent(), a[0]) { var o = n.findRoot(); o.prepend(a[0]); } for (var l = 1; l < a.length; l++) { if (l > 1) { var c = e.cloneWithParent(); n.addChild(c.findRoot()), n = c; } n.append(a[l]); } } break; case v.SelectorPlaceholder: if (s.matches("@at-root")) return n; case v.ElementNameSelector: var h = s.getText(); n.addAttr("name", h === "*" ? "element" : Ie(h)); break; case v.ClassSelector: n.addAttr("class", Ie(s.getText().substring(1))); break; case v.IdentifierSelector: n.addAttr("id", Ie(s.getText().substring(1))); break; case v.MixinDeclaration: n.addAttr("class", s.getName()); break; case v.PseudoSelector: n.addAttr(Ie(s.getText()), ""); break; case v.AttributeSelector: var u = s, f = u.getIdentifier(); if (f) { var m = u.getValue(), g = u.getOperator(), b = void 0; if (m && g) switch (Ie(g.getText())) { case "|=": b = "".concat(at.remove(Ie(m.getText())), "-…"); break; case "^=": b = "".concat(at.remove(Ie(m.getText())), "…"); break; case "$=": b = "…".concat(at.remove(Ie(m.getText()))); break; case "~=": b = " … ".concat(at.remove(Ie(m.getText())), " … "); break; case "*=": b = "…".concat(at.remove(Ie(m.getText())), "…"); break; default: b = at.remove(Ie(m.getText())); break; } n.addAttr(Ie(f.getText()), b); } break; } } return n; } function Ie(t) { var e = new Tn(); e.setSource(t); var n = e.scanUnquotedString(); return n ? n.text : t; } var ep = function() { function t(e) { this.cssDataManager = e; } return t.prototype.selectorToMarkedString = function(e) { var n = rp(e); if (n) { var r = new Uo('"').print(n); return r.push(this.selectorToSpecificityMarkedString(e)), r; } else return []; }, t.prototype.simpleSelectorToMarkedString = function(e) { var n = jl(e), r = new Uo('"').print(n); return r.push(this.selectorToSpecificityMarkedString(e)), r; }, t.prototype.isPseudoElementIdentifier = function(e) { var n = e.match(/^::?([\w-]+)/); return n ? !!this.cssDataManager.getPseudoElement("::" + n[1]) : !1; }, t.prototype.selectorToSpecificityMarkedString = function(e) { var n = this, r = function(s) { var a = new Vo(); e: for (var o = 0, l = s.getChildren(); o < l.length; o++) { var c = l[o]; switch (c.type) { case v.IdentifierSelector: a.id++; break; case v.ClassSelector: case v.AttributeSelector: a.attr++; break; case v.ElementNameSelector: if (c.matches("*")) break; a.tag++; break; case v.PseudoSelector: var h = c.getText(); if (n.isPseudoElementIdentifier(h)) { a.tag++; break; } if (h.match(/^:where/i)) continue e; if (h.match(/^:(not|has|is)/i) && c.getChildren().length > 0) { for (var u = new Vo(), f = 0, m = c.getChildren(); f < m.length; f++) { var g = m[f]; g.type === v.Undefined && g.getChildren(); for (var b = 0, y = g.getChildren(); b < y.length; b++) { var k = y[b], w = r(k); if (w.id > u.id) { u = w; continue; } else if (w.id < u.id) continue; if (w.attr > u.attr) { u = w; continue; } else if (w.attr < u.attr) continue; if (w.tag > u.tag) { u = w; continue; } } } a.id += u.id, a.attr += u.attr, a.tag += u.tag; continue e; } a.attr++; break; } if (c.getChildren().length > 0) { var w = r(c); a.id += w.id, a.attr += w.attr, a.tag += w.tag; } } return a; }, i = r(e); return Zu("specificity", "[Selector Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity): ({0}, {1}, {2})", i.id, i.attr, i.tag); }, t; }(), tp = function() { function t(e) { this.prev = null, this.element = e; } return t.prototype.processSelector = function(e) { var n = null; if (!(this.element instanceof en) && e.getChildren().some(function(h) { return h.hasChildren() && h.getChild(0).type === v.SelectorCombinator; })) { var r = this.element.findRoot(); r.parent instanceof en && (n = this.element, this.element = r.parent, this.element.removeChild(r), this.prev = null); } for (var i = 0, s = e.getChildren(); i < s.length; i++) { var a = s[i]; if (a instanceof Ht) { if (this.prev instanceof Ht) { var o = new zi("…"); this.element.addChild(o), this.element = o; } else this.prev && (this.prev.matches("+") || this.prev.matches("~")) && this.element.parent && (this.element = this.element.parent); this.prev && this.prev.matches("~") && this.element.addChild(new zi("⋮")); var l = jl(a, n), c = l.findRoot(); this.element.addChild(c), this.element = l; } (a instanceof Ht || a.type === v.SelectorCombinatorParent || a.type === v.SelectorCombinatorShadowPiercingDescendant || a.type === v.SelectorCombinatorSibling || a.type === v.SelectorCombinatorAllSiblings) && (this.prev = a); } }, t; }(); function np(t) { switch (t.type) { case v.MixinDeclaration: case v.Stylesheet: return !0; } return !1; } function rp(t) { if (t.matches("@at-root")) return null; var e = new en(), n = [], r = t.getParent(); if (r instanceof $t) for (var i = r.getParent(); i && !np(i); ) { if (i instanceof $t) { if (i.getSelectors().matches("@at-root")) break; n.push(i); } i = i.getParent(); } for (var s = new tp(e), a = n.length - 1; a >= 0; a--) { var o = n[a].getSelectors().getChild(0); o && s.processSelector(o); } return s.processSelector(t), e; } var ns = function() { function t(e, n) { this.clientCapabilities = e, this.cssDataManager = n, this.selectorPrinting = new ep(n); } return t.prototype.configure = function(e) { this.defaultSettings = e; }, t.prototype.doHover = function(e, n, r, i) { i === void 0 && (i = this.defaultSettings); function s(y) { return ie.create(e.positionAt(y.offset), e.positionAt(y.end)); } for (var a = e.offsetAt(n), o = qi(r, a), l = null, c = 0; c < o.length; c++) { var h = o[c]; if (h instanceof Wn) { l = { contents: this.selectorPrinting.selectorToMarkedString(h), range: s(h) }; break; } if (h instanceof Ht) { ge(h.getText(), "@") || (l = { contents: this.selectorPrinting.simpleSelectorToMarkedString(h), range: s(h) }); break; } if (h instanceof Ze) { var u = h.getFullPropertyName(), f = this.cssDataManager.getProperty(u); if (f) { var m = bt(f, this.doesSupportMarkdown(), i); m ? l = { contents: m, range: s(h) } : l = null; } continue; } if (h instanceof Ml) { var g = h.getText(), f = this.cssDataManager.getAtDirective(g); if (f) { var m = bt(f, this.doesSupportMarkdown(), i); m ? l = { contents: m, range: s(h) } : l = null; } continue; } if (h instanceof V && h.type === v.PseudoSelector) { var b = h.getText(), f = b.slice(0, 2) === "::" ? this.cssDataManager.getPseudoElement(b) : this.cssDataManager.getPseudoClass(b); if (f) { var m = bt(f, this.doesSupportMarkdown(), i); m ? l = { contents: m, range: s(h) } : l = null; } continue; } } return l && (l.contents = this.convertContents(l.contents)), l; }, t.prototype.convertContents = function(e) { return this.doesSupportMarkdown() || typeof e == "string" ? e : "kind" in e ? { kind: "plaintext", value: e.value } : Array.isArray(e) ? e.map(function(n) { return typeof n == "string" ? n : n.value; }) : e.value; }, t.prototype.doesSupportMarkdown = function() { if (!We(this.supportsMarkdown)) { if (!We(this.clientCapabilities)) return this.supportsMarkdown = !0, this.supportsMarkdown; var e = this.clientCapabilities.textDocument && this.clientCapabilities.textDocument.hover; this.supportsMarkdown = e && e.contentFormat && Array.isArray(e.contentFormat) && e.contentFormat.indexOf(Ve.Markdown) !== -1; } return this.supportsMarkdown; }, t; }(), pn = function(t, e, n, r) { function i(s) { return s instanceof n ? s : new n(function(a) { a(s); }); } return new (n || (n = Promise))(function(s, a) { function o(h) { try { c(r.next(h)); } catch (u) { a(u); } } function l(h) { try { c(r.throw(h)); } catch (u) { a(u); } } function c(h) { h.done ? s(h.value) : i(h.value).then(o, l); } c((r = r.apply(t, e || [])).next()); }); }, fn = function(t, e) { var n = { label: 0, sent: function() { if (s[0] & 1) throw s[1]; return s[1]; }, trys: [], ops: [] }, r, i, s, a; return a = { next: o(0), throw: o(1), return: o(2) }, typeof Symbol == "function" && (a[Symbol.iterator] = function() { return this; }), a; function o(c) { return function(h) { return l([c, h]); }; } function l(c) { if (r) throw new TypeError("Generator is already executing."); for (; n; ) try { if (r = 1, i && (s = c[0] & 2 ? i.return : c[0] ? i.throw || ((s = i.return) && s.call(i), 0) : i.next) && !(s = s.call(i, c[1])).done) return s; switch (i = 0, s && (c = [c[0] & 2, s.value]), c[0]) { case 0: case 1: s = c; break; case 4: return n.label++, { value: c[1], done: !1 }; case 5: n.label++, i = c[1], c = [0]; continue; case 7: c = n.ops.pop(), n.trys.pop(); continue; default: if (s = n.trys, !(s = s.length > 0 && s[s.length - 1]) && (c[0] === 6 || c[0] === 2)) { n = 0; continue; } if (c[0] === 3 && (!s || c[1] > s[0] && c[1] < s[3])) { n.label = c[1]; break; } if (c[0] === 6 && n.label < s[1]) { n.label = s[1], s = c; break; } if (s && n.label < s[2]) { n.label = s[2], n.ops.push(c); break; } s[2] && n.ops.pop(), n.trys.pop(); continue; } c = e.call(t, n); } catch (h) { c = [6, h], i = 0; } finally { r = s = 0; } if (c[0] & 5) throw c[1]; return { value: c[0] ? c[1] : void 0, done: !0 }; } }, Bo = Ge(), qo = /^\w+:\/\//, jo = /^data:/, rs = function() { function t(e, n) { this.fileSystemProvider = e, this.resolveModuleReferences = n; } return t.prototype.findDefinition = function(e, n, r) { var i = new Di(r), s = e.offsetAt(n), a = bi(r, s); if (!a) return null; var o = i.findSymbolFromNode(a); return o ? { uri: e.uri, range: Ft(o.node, e) } : null; }, t.prototype.findReferences = function(e, n, r) { var i = this.findDocumentHighlights(e, n, r); return i.map(function(s) { return { uri: e.uri, range: s.range }; }); }, t.prototype.findDocumentHighlights = function(e, n, r) { var i = [], s = e.offsetAt(n), a = bi(r, s); if (!a || a.type === v.Stylesheet || a.type === v.Declarations) return i; a.type === v.Identifier && a.parent && a.parent.type === v.ClassSelector && (a = a.parent); var o = new Di(r), l = o.findSymbolFromNode(a), c = a.getText(); return r.accept(function(h) { if (l) { if (o.matchesSymbol(h, l)) return i.push({ kind: $o(h), range: Ft(h, e) }), !1; } else a && a.type === h.type && h.matches(c) && i.push({ kind: $o(h), range: Ft(h, e) }); return !0; }), i; }, t.prototype.isRawStringDocumentLinkNode = function(e) { return e.type === v.Import; }, t.prototype.findDocumentLinks = function(e, n, r) { for (var i = this.findUnresolvedLinks(e, n), s = [], a = 0, o = i; a < o.length; a++) { var l = o[a], c = l.link, h = c.target; if (!(!h || jo.test(h))) if (qo.test(h)) s.push(c); else { var u = r.resolveReference(h, e.uri); u && (c.target = u), s.push(c); } } return s; }, t.prototype.findDocumentLinks2 = function(e, n, r) { return pn(this, void 0, void 0, function() { var i, s, a, o, l, c, h, u; return fn(this, function(f) { switch (f.label) { case 0: i = this.findUnresolvedLinks(e, n), s = [], a = 0, o = i, f.label = 1; case 1: return a < o.length ? (l = o[a], c = l.link, h = c.target, !h || jo.test(h) ? [3, 5] : [3, 2]) : [3, 6]; case 2: return qo.test(h) ? (s.push(c), [3, 5]) : [3, 3]; case 3: return [4, this.resolveRelativeReference(h, e.uri, r, l.isRawLink)]; case 4: u = f.sent(), u !== void 0 && (c.target = u, s.push(c)), f.label = 5; case 5: return a++, [3, 1]; case 6: return [2, s]; } }); }); }, t.prototype.findUnresolvedLinks = function(e, n) { var r = this, i = [], s = function(a) { var o = a.getText(), l = Ft(a, e); if (!(l.start.line === l.end.line && l.start.character === l.end.character)) { (ge(o, "'") || ge(o, '"')) && (o = o.slice(1, -1)); var c = a.parent ? r.isRawStringDocumentLinkNode(a.parent) : !1; i.push({ link: { target: o, range: l }, isRawLink: c }); } }; return n.accept(function(a) { if (a.type === v.URILiteral) { var o = a.getChild(0); return o && s(o), !1; } if (a.parent && r.isRawStringDocumentLinkNode(a.parent)) { var l = a.getText(); return (ge(l, "'") || ge(l, '"')) && s(a), !1; } return !0; }), i; }, t.prototype.findDocumentSymbols = function(e, n) { var r = []; return n.accept(function(i) { var s = { name: null, kind: Dt.Class, location: null }, a = i; if (i instanceof Wn) return s.name = i.getText(), a = i.findAParent(v.Ruleset, v.ExtendsReference), a && (s.location = En.create(e.uri, Ft(a, e)), r.push(s)), !1; if (i instanceof Rr) s.name = i.getName(), s.kind = Dt.Variable; else if (i instanceof Fn) s.name = i.getName(), s.kind = Dt.Method; else if (i instanceof dr) s.name = i.getName(), s.kind = Dt.Function; else if (i instanceof Fl) s.name = Bo("literal.keyframes", "@keyframes {0}", i.getName()); else if (i instanceof _l) s.name = Bo("literal.fontface", "@font-face"); else if (i instanceof El) { var o = i.getChild(0); o instanceof Dl && (s.name = "@media " + o.getText(), s.kind = Dt.Module); } return s.name && (s.location = En.create(e.uri, Ft(a, e)), r.push(s)), !0; }), r; }, t.prototype.findDocumentColors = function(e, n) { var r = []; return n.accept(function(i) { var s = ip(i, e); return s && r.push(s), !0; }), r; }, t.prototype.getColorPresentations = function(e, n, r, i) { var s = [], a = Math.round(r.red * 255), o = Math.round(r.green * 255), l = Math.round(r.blue * 255), c; r.alpha === 1 ? c = "rgb(".concat(a, ", ").concat(o, ", ").concat(l, ")") : c = "rgba(".concat(a, ", ").concat(o, ", ").concat(l, ", ").concat(r.alpha, ")"), s.push({ label: c, textEdit: $.replace(i, c) }), r.alpha === 1 ? c = "#".concat(_t(a)).concat(_t(o)).concat(_t(l)) : c = "#".concat(_t(a)).concat(_t(o)).concat(_t(l)).concat(_t(Math.round(r.alpha * 255))), s.push({ label: c, textEdit: $.replace(i, c) }); var h = Wl(r); h.a === 1 ? c = "hsl(".concat(h.h, ", ").concat(Math.round(h.s * 100), "%, ").concat(Math.round(h.l * 100), "%)") : c = "hsla(".concat(h.h, ", ").concat(Math.round(h.s * 100), "%, ").concat(Math.round(h.l * 100), "%, ").concat(h.a, ")"), s.push({ label: c, textEdit: $.replace(i, c) }); var u = Au(r); return u.a === 1 ? c = "hwb(".concat(u.h, " ").concat(Math.round(u.w * 100), "% ").concat(Math.round(u.b * 100), "%)") : c = "hwb(".concat(u.h, " ").concat(Math.round(u.w * 100), "% ").concat(Math.round(u.b * 100), "% / ").concat(u.a, ")"), s.push({ label: c, textEdit: $.replace(i, c) }), s; }, t.prototype.doRename = function(e, n, r, i) { var s, a = this.findDocumentHighlights(e, n, i), o = a.map(function(l) { return $.replace(l.range, r); }); return { changes: (s = {}, s[e.uri] = o, s) }; }, t.prototype.resolveModuleReference = function(e, n, r) { return pn(this, void 0, void 0, function() { var i, s, a, o, l; return fn(this, function(c) { switch (c.label) { case 0: return ge(n, "file://") ? (i = sp(e), s = r.resolveReference("/", n), a = Or(n), [4, this.resolvePathToModule(i, a, s)]) : [3, 2]; case 1: if (o = c.sent(), o) return l = e.substring(i.length + 1), [2, Ni(o, l)]; c.label = 2; case 2: return [2, void 0]; } }); }); }, t.prototype.resolveRelativeReference = function(e, n, r, i) { return pn(this, void 0, void 0, function() { var s, a; return fn(this, function(o) { switch (o.label) { case 0: return s = r.resolveReference(e, n), e[0] === "~" && e[1] !== "/" && this.fileSystemProvider ? (e = e.substring(1), [4, this.resolveModuleReference(e, n, r)]) : [3, 2]; case 1: return [2, o.sent() || s]; case 2: return this.resolveModuleReferences ? (a = s, a ? [4, this.fileExists(s)] : [3, 4]) : [3, 7]; case 3: a = o.sent(), o.label = 4; case 4: return a ? [2, s] : [3, 5]; case 5: return [4, this.resolveModuleReference(e, n, r)]; case 6: return [2, o.sent() || s]; case 7: return [2, s]; } }); }); }, t.prototype.resolvePathToModule = function(e, n, r) { return pn(this, void 0, void 0, function() { var i; return fn(this, function(s) { switch (s.label) { case 0: return i = Ni(n, "node_modules", e, "package.json"), [4, this.fileExists(i)]; case 1: return s.sent() ? [2, Or(i)] : r && n.startsWith(r) && n.length !== r.length ? [2, this.resolvePathToModule(e, Or(n), r)] : [2, void 0]; } }); }); }, t.prototype.fileExists = function(e) { return pn(this, void 0, void 0, function() { var n; return fn(this, function(r) { switch (r.label) { case 0: if (!this.fileSystemProvider) return [2, !1]; r.label = 1; case 1: return r.trys.push([1, 3, , 4]), [4, this.fileSystemProvider.stat(e)]; case 2: return n = r.sent(), n.type === zn.Unknown && n.size === -1 ? [2, !1] : [2, !0]; case 3: return r.sent(), [2, !1]; case 4: return [2]; } }); }); }, t; }(); function ip(t, e) { var n = Nu(t); if (n) { var r = Ft(t, e); return { color: n, range: r }; } return null; } function Ft(t, e) { return ie.create(e.positionAt(t.offset), e.positionAt(t.end)); } function $o(t) { if (t.type === v.Selector || t instanceof Ue && t.parent && t.parent instanceof Hi && t.isCustomProperty) return Bt.Write; if (t.parent) switch (t.parent.type) { case v.FunctionDeclaration: case v.MixinDeclaration: case v.Keyframe: case v.VariableDeclaration: case v.FunctionParameter: return Bt.Write; } return Bt.Read; } function _t(t) { var e = t.toString(16); return e.length !== 2 ? "0" + e : e; } function sp(t) { return t[0] === "@" ? t.substring(0, t.indexOf("/", t.indexOf("/") + 1)) : t.substring(0, t.indexOf("/")); } var me = Ge(), Ot = Le.Warning, Ho = Le.Error, Be = Le.Ignore, ye = function() { function t(e, n, r) { this.id = e, this.message = n, this.defaultValue = r; } return t; }(), ap = function() { function t(e, n, r) { this.id = e, this.message = n, this.defaultValue = r; } return t; }(), se = { AllVendorPrefixes: new ye("compatibleVendorPrefixes", me("rule.vendorprefixes.all", "When using a vendor-specific prefix make sure to also include all other vendor-specific properties"), Be), IncludeStandardPropertyWhenUsingVendorPrefix: new ye("vendorPrefix", me("rule.standardvendorprefix.all", "When using a vendor-specific prefix also include the standard property"), Ot), DuplicateDeclarations: new ye("duplicateProperties", me("rule.duplicateDeclarations", "Do not use duplicate style definitions"), Be), EmptyRuleSet: new ye("emptyRules", me("rule.emptyRuleSets", "Do not use empty rulesets"), Ot), ImportStatemement: new ye("importStatement", me("rule.importDirective", "Import statements do not load in parallel"), Be), BewareOfBoxModelSize: new ye("boxModel", me("rule.bewareOfBoxModelSize", "Do not use width or height when using padding or border"), Be), UniversalSelector: new ye("universalSelector", me("rule.universalSelector", "The universal selector (*) is known to be slow"), Be), ZeroWithUnit: new ye("zeroUnits", me("rule.zeroWidthUnit", "No unit for zero needed"), Be), RequiredPropertiesForFontFace: new ye("fontFaceProperties", me("rule.fontFaceProperties", "@font-face rule must define 'src' and 'font-family' properties"), Ot), HexColorLength: new ye("hexColorLength", me("rule.hexColor", "Hex colors must consist of three, four, six or eight hex numbers"), Ho), ArgsInColorFunction: new ye("argumentsInColorFunction", me("rule.colorFunction", "Invalid number of parameters"), Ho), UnknownProperty: new ye("unknownProperties", me("rule.unknownProperty", "Unknown property."), Ot), UnknownAtRules: new ye("unknownAtRules", me("rule.unknownAtRules", "Unknown at-rule."), Ot), IEStarHack: new ye("ieHack", me("rule.ieHack", "IE hacks are only necessary when supporting IE7 and older"), Be), UnknownVendorSpecificProperty: new ye("unknownVendorSpecificProperties", me("rule.unknownVendorSpecificProperty", "Unknown vendor specific property."), Be), PropertyIgnoredDueToDisplay: new ye("propertyIgnoredDueToDisplay", me("rule.propertyIgnoredDueToDisplay", "Property is ignored due to the display."), Ot), AvoidImportant: new ye("important", me("rule.avoidImportant", "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored."), Be), AvoidFloat: new ye("float", me("rule.avoidFloat", "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes."), Be), AvoidIdSelector: new ye("idSelector", me("rule.avoidIdSelector", "Selectors should not contain IDs because these rules are too tightly coupled with the HTML."), Be) }, op = { ValidProperties: new ap("validProperties", me("rule.validProperties", "A list of properties that are not validated against the `unknownProperties` rule."), []) }, lp = function() { function t(e) { e === void 0 && (e = {}), this.conf = e; } return t.prototype.getRule = function(e) { if (this.conf.hasOwnProperty(e.id)) { var n = cp(this.conf[e.id]); if (n) return n; } return e.defaultValue; }, t.prototype.getSetting = function(e) { return this.conf[e.id]; }, t; }(); function cp(t) { switch (t) { case "ignore": return Le.Ignore; case "warning": return Le.Warning; case "error": return Le.Error; } return null; } var hp = Ge(), is = function() { function t(e) { this.cssDataManager = e; } return t.prototype.doCodeActions = function(e, n, r, i) { return this.doCodeActions2(e, n, r, i).map(function(s) { var a = s.edit && s.edit.documentChanges && s.edit.documentChanges[0]; return Zt.create(s.title, "_css.applyCodeAction", e.uri, e.version, a && a.edits); }); }, t.prototype.doCodeActions2 = function(e, n, r, i) { var s = []; if (r.diagnostics) for (var a = 0, o = r.diagnostics; a < o.length; a++) { var l = o[a]; this.appendFixesForMarker(e, i, l, s); } return s; }, t.prototype.getFixesForUnknownProperty = function(e, n, r, i) { var s = n.getName(), a = []; this.cssDataManager.getProperties().forEach(function(k) { var w = Id(s, k.name); w >= s.length / 2 && a.push({ property: k.name, score: w }); }), a.sort(function(k, w) { return w.score - k.score || k.property.localeCompare(w.property); }); for (var o = 3, l = 0, c = a; l < c.length; l++) { var h = c[l], u = h.property, f = hp("css.codeaction.rename", "Rename to '{0}'", u), m = $.replace(r.range, u), g = Ci.create(e.uri, e.version), b = { documentChanges: [Dn.create(g, [m])] }, y = Ri.create(f, b, _i.QuickFix); if (y.diagnostics = [r], i.push(y), --o <= 0) return; } }, t.prototype.appendFixesForMarker = function(e, n, r, i) { if (r.code === se.UnknownProperty.id) for (var s = e.offsetAt(r.range.start), a = e.offsetAt(r.range.end), o = qi(n, s), l = o.length - 1; l >= 0; l--) { var c = o[l]; if (c instanceof Ze) { var h = c.getProperty(); if (h && h.offset === s && h.end === a) { this.getFixesForUnknownProperty(e, h, r, i); return; } } } }, t; }(), dp = function() { function t(e) { this.fullPropertyName = e.getFullPropertyName().toLowerCase(), this.node = e; } return t; }(); function gn(t, e, n, r) { var i = t[e]; i.value = n, n && (Ul(i.properties, r) || i.properties.push(r)); } function up(t, e, n) { gn(t, "top", e, n), gn(t, "right", e, n), gn(t, "bottom", e, n), gn(t, "left", e, n); } function Ce(t, e, n, r) { e === "top" || e === "right" || e === "bottom" || e === "left" ? gn(t, e, n, r) : up(t, n, r); } function Vr(t, e, n) { switch (e.length) { case 1: Ce(t, void 0, e[0], n); break; case 2: Ce(t, "top", e[0], n), Ce(t, "bottom", e[0], n), Ce(t, "right", e[1], n), Ce(t, "left", e[1], n); break; case 3: Ce(t, "top", e[0], n), Ce(t, "right", e[1], n), Ce(t, "left", e[1], n), Ce(t, "bottom", e[2], n); break; case 4: Ce(t, "top", e[0], n), Ce(t, "right", e[1], n), Ce(t, "bottom", e[2], n), Ce(t, "left", e[3], n); break; } } function Li(t, e) { for (var n = 0, r = e; n < r.length; n++) { var i = r[n]; if (t.matches(i)) return !0; } return !1; } function Ln(t, e) { return e === void 0 && (e = !0), e && Li(t, ["initial", "unset"]) ? !1 : parseFloat(t.getText()) !== 0; } function Go(t, e) { return e === void 0 && (e = !0), t.map(function(n) { return Ln(n, e); }); } function Sr(t, e) { return e === void 0 && (e = !0), !(Li(t, ["none", "hidden"]) || e && Li(t, ["initial", "unset"])); } function pp(t, e) { return e === void 0 && (e = !0), t.map(function(n) { return Sr(n, e); }); } function fp(t) { var e = t.getChildren(); if (e.length === 1) { var n = e[0]; return Ln(n) && Sr(n); } for (var r = 0, i = e; r < i.length; r++) { var s = i[r], n = s; if (!Ln(n, !1) || !Sr(n, !1)) return !1; } return !0; } function mp(t) { for (var e = { top: { value: !1, properties: [] }, right: { value: !1, properties: [] }, bottom: { value: !1, properties: [] }, left: { value: !1, properties: [] } }, n = 0, r = t; n < r.length; n++) { var i = r[n], s = i.node.value; if (!(typeof s > "u")) switch (i.fullPropertyName) { case "box-sizing": return { top: { value: !1, properties: [] }, right: { value: !1, properties: [] }, bottom: { value: !1, properties: [] }, left: { value: !1, properties: [] } }; case "width": e.width = i; break; case "height": e.height = i; break; default: var a = i.fullPropertyName.split("-"); switch (a[0]) { case "border": switch (a[1]) { case void 0: case "top": case "right": case "bottom": case "left": switch (a[2]) { case void 0: Ce(e, a[1], fp(s), i); break; case "width": Ce(e, a[1], Ln(s, !1), i); break; case "style": Ce(e, a[1], Sr(s, !0), i); break; } break; case "width": Vr(e, Go(s.getChildren(), !1), i); break; case "style": Vr(e, pp(s.getChildren(), !0), i); break; } break; case "padding": a.length === 1 ? Vr(e, Go(s.getChildren(), !0), i) : Ce(e, a[1], Ln(s, !0), i); break; } break; } } return e; } var it = Ge(), Jo = function() { function t() { this.data = {}; } return t.prototype.add = function(e, n, r) { var i = this.data[e]; i || (i = { nodes: [], names: [] }, this.data[e] = i), i.names.push(n), r && i.nodes.push(r); }, t; }(), gp = function() { function t(e, n, r) { var i = this; this.cssDataManager = r, this.warnings = [], this.settings = n, this.documentText = e.getText(), this.keyframes = new Jo(), this.validProperties = {}; var s = n.getSetting(op.ValidProperties); Array.isArray(s) && s.forEach(function(a) { if (typeof a == "string") { var o = a.trim().toLowerCase(); o.length && (i.validProperties[o] = !0); } }); } return t.entries = function(e, n, r, i, s) { var a = new t(n, r, i); return e.acceptVisitor(a), a.completeValidations(), a.getEntries(s); }, t.prototype.isValidPropertyDeclaration = function(e) { var n = e.fullPropertyName; return this.validProperties[n]; }, t.prototype.fetch = function(e, n) { for (var r = [], i = 0, s = e; i < s.length; i++) { var a = s[i]; a.fullPropertyName === n && r.push(a); } return r; }, t.prototype.fetchWithValue = function(e, n, r) { for (var i = [], s = 0, a = e; s < a.length; s++) { var o = a[s]; if (o.fullPropertyName === n) { var l = o.node.getValue(); l && this.findValueInExpression(l, r) && i.push(o); } } return i; }, t.prototype.findValueInExpression = function(e, n) { var r = !1; return e.accept(function(i) { return i.type === v.Identifier && i.matches(n) && (r = !0), !r; }), r; }, t.prototype.getEntries = function(e) { return e === void 0 && (e = Le.Warning | Le.Error), this.warnings.filter(function(n) { return (n.getLevel() & e) !== 0; }); }, t.prototype.addEntry = function(e, n, r) { var i = new zl(e, n, this.settings.getRule(n), r); this.warnings.push(i); }, t.prototype.getMissingNames = function(e, n) { for (var r = e.slice(0), i = 0; i < n.length; i++) { var s = r.indexOf(n[i]); s !== -1 && (r[s] = null); } for (var a = null, i = 0; i < r.length; i++) { var o = r[i]; o && (a === null ? a = it("namelist.single", "'{0}'", o) : a = it("namelist.concatenated", "{0}, '{1}'", a, o)); } return a; }, t.prototype.visitNode = function(e) { switch (e.type) { case v.UnknownAtRule: return this.visitUnknownAtRule(e); case v.Keyframe: return this.visitKeyframe(e); case v.FontFace: return this.visitFontFace(e); case v.Ruleset: return this.visitRuleSet(e); case v.SimpleSelector: return this.visitSimpleSelector(e); case v.Function: return this.visitFunction(e); case v.NumericValue: return this.visitNumericValue(e); case v.Import: return this.visitImport(e); case v.HexColorValue: return this.visitHexColorValue(e); case v.Prio: return this.visitPrio(e); case v.IdentifierSelector: return this.visitIdentifierSelector(e); } return !0; }, t.prototype.completeValidations = function() { this.validateKeyframes(); }, t.prototype.visitUnknownAtRule = function(e) { var n = e.getChild(0); if (!n) return !1; var r = this.cssDataManager.getAtDirective(n.getText()); return r ? !1 : (this.addEntry(n, se.UnknownAtRules, "Unknown at rule ".concat(n.getText())), !0); }, t.prototype.visitKeyframe = function(e) { var n = e.getKeyword(); if (!n) return !1; var r = n.getText(); return this.keyframes.add(e.getName(), r, r !== "@keyframes" ? n : null), !0; }, t.prototype.validateKeyframes = function() { var e = ["@-webkit-keyframes", "@-moz-keyframes", "@-o-keyframes"]; for (var n in this.keyframes.data) { var r = this.keyframes.data[n].names, i = r.indexOf("@keyframes") === -1; if (!(!i && r.length === 1)) { var s = this.getMissingNames(e, r); if (s || i) for (var a = 0, o = this.keyframes.data[n].nodes; a < o.length; a++) { var l = o[a]; if (i) { var c = it("keyframes.standardrule.missing", "Always define standard rule '@keyframes' when defining keyframes."); this.addEntry(l, se.IncludeStandardPropertyWhenUsingVendorPrefix, c); } if (s) { var c = it("keyframes.vendorspecific.missing", "Always include all vendor specific rules: Missing: {0}", s); this.addEntry(l, se.AllVendorPrefixes, c); } } } } return !0; }, t.prototype.visitSimpleSelector = function(e) { var n = this.documentText.charAt(e.offset); return e.length === 1 && n === "*" && this.addEntry(e, se.UniversalSelector), !0; }, t.prototype.visitIdentifierSelector = function(e) { return this.addEntry(e, se.AvoidIdSelector), !0; }, t.prototype.visitImport = function(e) { return this.addEntry(e, se.ImportStatemement), !0; }, t.prototype.visitRuleSet = function(e) { var n = e.getDeclarations(); if (!n) return !1; n.hasChildren() || this.addEntry(e.getSelectors(), se.EmptyRuleSet); for (var r = [], i = 0, s = n.getChildren(); i < s.length; i++) { var a = s[i]; a instanceof Ze && r.push(new dp(a)); } var o = mp(r); if (o.width) { var l = []; if (o.right.value && (l = Jn(l, o.right.properties)), o.left.value && (l = Jn(l, o.left.properties)), l.length !== 0) { for (var c = 0, h = l; c < h.length; c++) { var u = h[c]; this.addEntry(u.node, se.BewareOfBoxModelSize); } this.addEntry(o.width.node, se.BewareOfBoxModelSize); } } if (o.height) { var l = []; if (o.top.value && (l = Jn(l, o.top.properties)), o.bottom.value && (l = Jn(l, o.bottom.properties)), l.length !== 0) { for (var f = 0, m = l; f < m.length; f++) { var u = m[f]; this.addEntry(u.node, se.BewareOfBoxModelSize); } this.addEntry(o.height.node, se.BewareOfBoxModelSize); } } var g = this.fetchWithValue(r, "display", "inline-block"); if (g.length > 0) for (var b = this.fetch(r, "float"), y = 0; y < b.length; y++) { var k = b[y].node, w = k.getValue(); w && !w.matches("none") && this.addEntry(k, se.PropertyIgnoredDueToDisplay, it("rule.propertyIgnoredDueToDisplayInlineBlock", "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'")); } if (g = this.fetchWithValue(r, "display", "block"), g.length > 0) for (var b = this.fetch(r, "vertical-align"), y = 0; y < b.length; y++) this.addEntry(b[y].node, se.PropertyIgnoredDueToDisplay, it("rule.propertyIgnoredDueToDisplayBlock", "Property is ignored due to the display. With 'display: block', vertical-align should not be used.")); for (var S = this.fetch(r, "float"), y = 0; y < S.length; y++) { var a = S[y]; this.isValidPropertyDeclaration(a) || this.addEntry(a.node, se.AvoidFloat); } for (var F = 0; F < r.length; F++) { var a = r[F]; if (a.fullPropertyName !== "background" && !this.validProperties[a.fullPropertyName]) { var w = a.node.getValue(); if (w && this.documentText.charAt(w.offset) !== "-") { var E = this.fetch(r, a.fullPropertyName); if (E.length > 1) for (var P = 0; P < E.length; P++) { var T = E[P].node.getValue(); T && this.documentText.charAt(T.offset) !== "-" && E[P] !== a && this.addEntry(a.node, se.DuplicateDeclarations); } } } } var W = e.getSelectors().matches(":export"); if (!W) { for (var H = new Jo(), re = !1, X = 0, D = r; X < D.length; X++) { var a = D[X], N = a.node; if (this.isCSSDeclaration(N)) { var L = a.fullPropertyName, I = L.charAt(0); if (I === "-") { if (L.charAt(1) !== "-") { !this.cssDataManager.isKnownProperty(L) && !this.validProperties[L] && this.addEntry(N.getProperty(), se.UnknownVendorSpecificProperty); var O = N.getNonPrefixedPropertyName(); H.add(O, L, N.getProperty()); } } else { var _ = L; (I === "*" || I === "_") && (this.addEntry(N.getProperty(), se.IEStarHack), L = L.substr(1)), !this.cssDataManager.isKnownProperty(_) && !this.cssDataManager.isKnownProperty(L) && (this.validProperties[L] || this.addEntry(N.getProperty(), se.UnknownProperty, it("property.unknownproperty.detailed", "Unknown property: '{0}'", N.getFullPropertyName()))), H.add(L, L, null); } } else re = !0; } if (!re) for (var x in H.data) { var A = H.data[x], M = A.names, G = this.cssDataManager.isStandardProperty(x) && M.indexOf(x) === -1; if (!(!G && M.length === 1)) { for (var J = [], F = 0, Q = t.prefixes.length; F < Q; F++) { var Pe = t.prefixes[F]; this.cssDataManager.isStandardProperty(Pe + x) && J.push(Pe + x); } var de = this.getMissingNames(J, M); if (de || G) for (var Fe = 0, tt = A.nodes; Fe < tt.length; Fe++) { var nt = tt[Fe]; if (G) { var Fr = it("property.standard.missing", "Also define the standard property '{0}' for compatibility", x); this.addEntry(nt, se.IncludeStandardPropertyWhenUsingVendorPrefix, Fr); } if (de) { var Fr = it("property.vendorspecific.missing", "Always include all vendor specific properties: Missing: {0}", de); this.addEntry(nt, se.AllVendorPrefixes, Fr); } } } } } return !0; }, t.prototype.visitPrio = function(e) { return this.addEntry(e, se.AvoidImportant), !0; }, t.prototype.visitNumericValue = function(e) { var n = e.findParent(v.Function); if (n && n.getName() === "calc") return !0; var r = e.findParent(v.Declaration); if (r) { var i = r.getValue(); if (i) { var s = e.getValue(); if (!s.unit || Ol.length.indexOf(s.unit.toLowerCase()) === -1) return !0; parseFloat(s.value) === 0 && s.unit && !this.validProperties[r.getFullPropertyName()] && this.addEntry(e, se.ZeroWithUnit); } } return !0; }, t.prototype.visitFontFace = function(e) { var n = e.getDeclarations(); if (!n) return !1; for (var r = !1, i = !1, s = !1, a = 0, o = n.getChildren(); a < o.length; a++) { var l = o[a]; if (this.isCSSDeclaration(l)) { var c = l.getProperty().getName().toLowerCase(); c === "src" && (r = !0), c === "font-family" && (i = !0); } else s = !0; } return !s && (!r || !i) && this.addEntry(e, se.RequiredPropertiesForFontFace), !0; }, t.prototype.isCSSDeclaration = function(e) { if (e instanceof Ze) { if (!e.getValue()) return !1; var n = e.getProperty(); if (!n) return !1; var r = n.getIdentifier(); return !(!r || r.containsInterpolation()); } return !1; }, t.prototype.visitHexColorValue = function(e) { var n = e.length; return n !== 9 && n !== 7 && n !== 5 && n !== 4 && this.addEntry(e, se.HexColorLength), !1; }, t.prototype.visitFunction = function(e) { var n = e.getName().toLowerCase(), r = -1, i = 0; switch (n) { case "rgb(": case "hsl(": r = 3; break; case "rgba(": case "hsla(": r = 4; break; } return r !== -1 && (e.getArguments().accept(function(s) { return s instanceof Ji ? (i += 1, !1) : !0; }), i !== r && this.addEntry(e, se.ArgsInColorFunction)), !0; }, t.prefixes = [ "-ms-", "-moz-", "-o-", "-webkit-" ], t; }(), ss = function() { function t(e) { this.cssDataManager = e; } return t.prototype.configure = function(e) { this.settings = e; }, t.prototype.doValidation = function(e, n, r) { if (r === void 0 && (r = this.settings), r && r.validate === !1) return []; var i = []; i.push.apply(i, bu.entries(n)), i.push.apply(i, gp.entries(n, e, new lp(r && r.lint), this.cssDataManager)); var s = []; for (var a in se) s.push(se[a].id); function o(l) { var c = ie.create(e.positionAt(l.getOffset()), e.positionAt(l.getOffset() + l.getLength())), h = e.languageId; return { code: l.getRule().id, source: h, message: l.getMessage(), severity: l.getLevel() === Le.Warning ? fr.Warning : fr.Error, range: c }; } return i.filter(function(l) { return l.getLevel() !== Le.Ignore; }).map(o); }, t; }(), bp = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Xo = "/".charCodeAt(0), vp = ` `.charCodeAt(0), yp = "\r".charCodeAt(0), wp = "\f".charCodeAt(0), xp = "$".charCodeAt(0), Sp = "#".charCodeAt(0), Cp = "{".charCodeAt(0), mn = "=".charCodeAt(0), kp = "!".charCodeAt(0), _p = "<".charCodeAt(0), Rp = ">".charCodeAt(0), Br = ".".charCodeAt(0), ct = p.CustomToken, Pi = ct++, Cr = ct++; ct++; var $l = ct++, Hl = ct++, Gl = ct++, Jl = ct++, rr = ct++; ct++; var Xl = function(t) { bp(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return e.prototype.scanNext = function(n) { if (this.stream.advanceIfChar(xp)) { var r = ["$"]; if (this.ident(r)) return this.finishToken(n, Pi, r.join("")); this.stream.goBackTo(n); } return this.stream.advanceIfChars([Sp, Cp]) ? this.finishToken(n, Cr) : this.stream.advanceIfChars([mn, mn]) ? this.finishToken(n, $l) : this.stream.advanceIfChars([kp, mn]) ? this.finishToken(n, Hl) : this.stream.advanceIfChar(_p) ? this.stream.advanceIfChar(mn) ? this.finishToken(n, Jl) : this.finishToken(n, p.Delim) : this.stream.advanceIfChar(Rp) ? this.stream.advanceIfChar(mn) ? this.finishToken(n, Gl) : this.finishToken(n, p.Delim) : this.stream.advanceIfChars([Br, Br, Br]) ? this.finishToken(n, rr) : t.prototype.scanNext.call(this, n); }, e.prototype.comment = function() { return t.prototype.comment.call(this) ? !0 : !this.inURL && this.stream.advanceIfChars([Xo, Xo]) ? (this.stream.advanceWhileChar(function(n) { switch (n) { case vp: case yp: case wp: return !1; default: return !0; } }), !0) : !1; }, e; }(Tn), qr = Ge(), jr = function() { function t(e, n) { this.id = e, this.message = n; } return t; }(), $r = { FromExpected: new jr("scss-fromexpected", qr("expected.from", "'from' expected")), ThroughOrToExpected: new jr("scss-throughexpected", qr("expected.through", "'through' or 'to' expected")), InExpected: new jr("scss-fromexpected", qr("expected.in", "'in' expected")) }, Fp = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Ep = function(t) { Fp(e, t); function e() { return t.call(this, new Xl()) || this; } return e.prototype._parseStylesheetStatement = function(n) { return n === void 0 && (n = !1), this.peek(p.AtKeyword) ? this._parseWarnAndDebug() || this._parseControlStatement() || this._parseMixinDeclaration() || this._parseMixinContent() || this._parseMixinReference() || this._parseFunctionDeclaration() || this._parseForward() || this._parseUse() || this._parseRuleset(n) || t.prototype._parseStylesheetAtStatement.call(this, n) : this._parseRuleset(!0) || this._parseVariableDeclaration(); }, e.prototype._parseImport = function() { if (!this.peekKeyword("@import")) return null; var n = this.create(Gi); if (this.consumeToken(), !n.addChild(this._parseURILiteral()) && !n.addChild(this._parseStringLiteral())) return this.finish(n, C.URIOrStringExpected); for (; this.accept(p.Comma); ) if (!n.addChild(this._parseURILiteral()) && !n.addChild(this._parseStringLiteral())) return this.finish(n, C.URIOrStringExpected); return !this.peek(p.SemiColon) && !this.peek(p.EOF) && n.setMedialist(this._parseMediaQueryList()), this.finish(n); }, e.prototype._parseVariableDeclaration = function(n) { if (n === void 0 && (n = []), !this.peek(Pi)) return null; var r = this.create(Rr); if (!r.setVariable(this._parseVariable())) return null; if (!this.accept(p.Colon)) return this.finish(r, C.ColonExpected); if (this.prevToken && (r.colonPosition = this.prevToken.offset), !r.setValue(this._parseExpr())) return this.finish(r, C.VariableValueExpected, [], n); for (; this.peek(p.Exclamation); ) if (!r.addChild(this._tryParsePrio())) { if (this.consumeToken(), !this.peekRegExp(p.Ident, /^(default|global)$/)) return this.finish(r, C.UnknownKeyword); this.consumeToken(); } return this.peek(p.SemiColon) && (r.semicolonPosition = this.token.offset), this.finish(r); }, e.prototype._parseMediaCondition = function() { return this._parseInterpolation() || t.prototype._parseMediaCondition.call(this); }, e.prototype._parseMediaFeatureName = function() { return this._parseModuleMember() || this._parseFunction() || this._parseIdent() || this._parseVariable(); }, e.prototype._parseKeyframeSelector = function() { return this._tryParseKeyframeSelector() || this._parseControlStatement(this._parseKeyframeSelector.bind(this)) || this._parseVariableDeclaration() || this._parseMixinContent(); }, e.prototype._parseVariable = function() { if (!this.peek(Pi)) return null; var n = this.create(Ki); return this.consumeToken(), n; }, e.prototype._parseModuleMember = function() { var n = this.mark(), r = this.create(qa); return r.setIdentifier(this._parseIdent([Z.Module])) ? this.hasWhitespace() || !this.acceptDelim(".") || this.hasWhitespace() ? (this.restoreAtMark(n), null) : r.addChild(this._parseVariable() || this._parseFunction()) ? r : this.finish(r, C.IdentifierOrVariableExpected) : null; }, e.prototype._parseIdent = function(n) { var r = this; if (!this.peek(p.Ident) && !this.peek(Cr) && !this.peekDelim("-")) return null; var i = this.create(Ue); i.referenceTypes = n, i.isCustomProperty = this.peekRegExp(p.Ident, /^--/); for (var s = !1, a = function() { var o = r.mark(); return r.acceptDelim("-") && (r.hasWhitespace() || r.acceptDelim("-"), r.hasWhitespace()) ? (r.restoreAtMark(o), null) : r._parseInterpolation(); }; (this.accept(p.Ident) || i.addChild(a()) || s && this.acceptRegexp(/^[\w-]/)) && (s = !0, !this.hasWhitespace()); ) ; return s ? this.finish(i) : null; }, e.prototype._parseTermExpression = function() { return this._parseModuleMember() || this._parseVariable() || this._parseSelectorCombinator() || t.prototype._parseTermExpression.call(this); }, e.prototype._parseInterpolation = function() { if (this.peek(Cr)) { var n = this.create(yi); return this.consumeToken(), !n.addChild(this._parseExpr()) && !this._parseSelectorCombinator() ? this.accept(p.CurlyR) ? this.finish(n) : this.finish(n, C.ExpressionExpected) : this.accept(p.CurlyR) ? this.finish(n) : this.finish(n, C.RightCurlyExpected); } return null; }, e.prototype._parseOperator = function() { if (this.peek($l) || this.peek(Hl) || this.peek(Gl) || this.peek(Jl) || this.peekDelim(">") || this.peekDelim("<") || this.peekIdent("and") || this.peekIdent("or") || this.peekDelim("%")) { var n = this.createNode(v.Operator); return this.consumeToken(), this.finish(n); } return t.prototype._parseOperator.call(this); }, e.prototype._parseUnaryOperator = function() { if (this.peekIdent("not")) { var n = this.create(V); return this.consumeToken(), this.finish(n); } return t.prototype._parseUnaryOperator.call(this); }, e.prototype._parseRuleSetDeclaration = function() { return this.peek(p.AtKeyword) ? this._parseKeyframe() || this._parseImport() || this._parseMedia(!0) || this._parseFontFace() || this._parseWarnAndDebug() || this._parseControlStatement() || this._parseFunctionDeclaration() || this._parseExtends() || this._parseMixinReference() || this._parseMixinContent() || this._parseMixinDeclaration() || this._parseRuleset(!0) || this._parseSupports(!0) || t.prototype._parseRuleSetDeclarationAtStatement.call(this) : this._parseVariableDeclaration() || this._tryParseRuleset(!0) || t.prototype._parseRuleSetDeclaration.call(this); }, e.prototype._parseDeclaration = function(n) { var r = this._tryParseCustomPropertyDeclaration(n); if (r) return r; var i = this.create(Ze); if (!i.setProperty(this._parseProperty())) return null; if (!this.accept(p.Colon)) return this.finish(i, C.ColonExpected, [p.Colon], n || [p.SemiColon]); this.prevToken && (i.colonPosition = this.prevToken.offset); var s = !1; if (i.setValue(this._parseExpr()) && (s = !0, i.addChild(this._parsePrio())), this.peek(p.CurlyL)) i.setNestedProperties(this._parseNestedProperties()); else if (!s) return this.finish(i, C.PropertyValueExpected); return this.peek(p.SemiColon) && (i.semicolonPosition = this.token.offset), this.finish(i); }, e.prototype._parseNestedProperties = function() { var n = this.create(Rl); return this._parseBody(n, this._parseDeclaration.bind(this)); }, e.prototype._parseExtends = function() { if (this.peekKeyword("@extend")) { var n = this.create(Rn); if (this.consumeToken(), !n.getSelectors().addChild(this._parseSimpleSelector())) return this.finish(n, C.SelectorExpected); for (; this.accept(p.Comma); ) n.getSelectors().addChild(this._parseSimpleSelector()); return this.accept(p.Exclamation) && !this.acceptIdent("optional") ? this.finish(n, C.UnknownKeyword) : this.finish(n); } return null; }, e.prototype._parseSimpleSelectorBody = function() { return this._parseSelectorCombinator() || this._parseSelectorPlaceholder() || t.prototype._parseSimpleSelectorBody.call(this); }, e.prototype._parseSelectorCombinator = function() { if (this.peekDelim("&")) { var n = this.createNode(v.SelectorCombinator); for (this.consumeToken(); !this.hasWhitespace() && (this.acceptDelim("-") || this.accept(p.Num) || this.accept(p.Dimension) || n.addChild(this._parseIdent()) || this.acceptDelim("&")); ) ; return this.finish(n); } return null; }, e.prototype._parseSelectorPlaceholder = function() { if (this.peekDelim("%")) { var n = this.createNode(v.SelectorPlaceholder); return this.consumeToken(), this._parseIdent(), this.finish(n); } else if (this.peekKeyword("@at-root")) { var n = this.createNode(v.SelectorPlaceholder); return this.consumeToken(), this.finish(n); } return null; }, e.prototype._parseElementName = function() { var n = this.mark(), r = t.prototype._parseElementName.call(this); return r && !this.hasWhitespace() && this.peek(p.ParenthesisL) ? (this.restoreAtMark(n), null) : r; }, e.prototype._tryParsePseudoIdentifier = function() { return this._parseInterpolation() || t.prototype._tryParsePseudoIdentifier.call(this); }, e.prototype._parseWarnAndDebug = function() { if (!this.peekKeyword("@debug") && !this.peekKeyword("@warn") && !this.peekKeyword("@error")) return null; var n = this.createNode(v.Debug); return this.consumeToken(), n.addChild(this._parseExpr()), this.finish(n); }, e.prototype._parseControlStatement = function(n) { return n === void 0 && (n = this._parseRuleSetDeclaration.bind(this)), this.peek(p.AtKeyword) ? this._parseIfStatement(n) || this._parseForStatement(n) || this._parseEachStatement(n) || this._parseWhileStatement(n) : null; }, e.prototype._parseIfStatement = function(n) { return this.peekKeyword("@if") ? this._internalParseIfStatement(n) : null; }, e.prototype._internalParseIfStatement = function(n) { var r = this.create(jd); if (this.consumeToken(), !r.setExpression(this._parseExpr(!0))) return this.finish(r, C.ExpressionExpected); if (this._parseBody(r, n), this.acceptKeyword("@else")) { if (this.peekIdent("if")) r.setElseClause(this._internalParseIfStatement(n)); else if (this.peek(p.CurlyL)) { var i = this.create(Jd); this._parseBody(i, n), r.setElseClause(i); } } return this.finish(r); }, e.prototype._parseForStatement = function(n) { if (!this.peekKeyword("@for")) return null; var r = this.create($d); return this.consumeToken(), r.setVariable(this._parseVariable()) ? this.acceptIdent("from") ? r.addChild(this._parseBinaryExpr()) ? !this.acceptIdent("to") && !this.acceptIdent("through") ? this.finish(r, $r.ThroughOrToExpected, [p.CurlyR]) : r.addChild(this._parseBinaryExpr()) ? this._parseBody(r, n) : this.finish(r, C.ExpressionExpected, [p.CurlyR]) : this.finish(r, C.ExpressionExpected, [p.CurlyR]) : this.finish(r, $r.FromExpected, [p.CurlyR]) : this.finish(r, C.VariableNameExpected, [p.CurlyR]); }, e.prototype._parseEachStatement = function(n) { if (!this.peekKeyword("@each")) return null; var r = this.create(Hd); this.consumeToken(); var i = r.getVariables(); if (!i.addChild(this._parseVariable())) return this.finish(r, C.VariableNameExpected, [p.CurlyR]); for (; this.accept(p.Comma); ) if (!i.addChild(this._parseVariable())) return this.finish(r, C.VariableNameExpected, [p.CurlyR]); return this.finish(i), this.acceptIdent("in") ? r.addChild(this._parseExpr()) ? this._parseBody(r, n) : this.finish(r, C.ExpressionExpected, [p.CurlyR]) : this.finish(r, $r.InExpected, [p.CurlyR]); }, e.prototype._parseWhileStatement = function(n) { if (!this.peekKeyword("@while")) return null; var r = this.create(Gd); return this.consumeToken(), r.addChild(this._parseBinaryExpr()) ? this._parseBody(r, n) : this.finish(r, C.ExpressionExpected, [p.CurlyR]); }, e.prototype._parseFunctionBodyDeclaration = function() { return this._parseVariableDeclaration() || this._parseReturnStatement() || this._parseWarnAndDebug() || this._parseControlStatement(this._parseFunctionBodyDeclaration.bind(this)); }, e.prototype._parseFunctionDeclaration = function() { if (!this.peekKeyword("@function")) return null; var n = this.create(dr); if (this.consumeToken(), !n.setIdentifier(this._parseIdent([Z.Function]))) return this.finish(n, C.IdentifierExpected, [p.CurlyR]); if (!this.accept(p.ParenthesisL)) return this.finish(n, C.LeftParenthesisExpected, [p.CurlyR]); if (n.getParameters().addChild(this._parseParameterDeclaration())) { for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getParameters().addChild(this._parseParameterDeclaration())) return this.finish(n, C.VariableNameExpected); } return this.accept(p.ParenthesisR) ? this._parseBody(n, this._parseFunctionBodyDeclaration.bind(this)) : this.finish(n, C.RightParenthesisExpected, [p.CurlyR]); }, e.prototype._parseReturnStatement = function() { if (!this.peekKeyword("@return")) return null; var n = this.createNode(v.ReturnStatement); return this.consumeToken(), n.addChild(this._parseExpr()) ? this.finish(n) : this.finish(n, C.ExpressionExpected); }, e.prototype._parseMixinDeclaration = function() { if (!this.peekKeyword("@mixin")) return null; var n = this.create(Fn); if (this.consumeToken(), !n.setIdentifier(this._parseIdent([Z.Mixin]))) return this.finish(n, C.IdentifierExpected, [p.CurlyR]); if (this.accept(p.ParenthesisL)) { if (n.getParameters().addChild(this._parseParameterDeclaration())) { for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getParameters().addChild(this._parseParameterDeclaration())) return this.finish(n, C.VariableNameExpected); } if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected, [p.CurlyR]); } return this._parseBody(n, this._parseRuleSetDeclaration.bind(this)); }, e.prototype._parseParameterDeclaration = function() { var n = this.create(_r); return n.setIdentifier(this._parseVariable()) ? (this.accept(rr), this.accept(p.Colon) && !n.setDefaultValue(this._parseExpr(!0)) ? this.finish(n, C.VariableValueExpected, [], [p.Comma, p.ParenthesisR]) : this.finish(n)) : null; }, e.prototype._parseMixinContent = function() { if (!this.peekKeyword("@content")) return null; var n = this.create(uu); if (this.consumeToken(), this.accept(p.ParenthesisL)) { if (n.getArguments().addChild(this._parseFunctionArgument())) { for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getArguments().addChild(this._parseFunctionArgument())) return this.finish(n, C.ExpressionExpected); } if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected); } return this.finish(n); }, e.prototype._parseMixinReference = function() { if (!this.peekKeyword("@include")) return null; var n = this.create(ur); this.consumeToken(); var r = this._parseIdent([Z.Mixin]); if (!n.setIdentifier(r)) return this.finish(n, C.IdentifierExpected, [p.CurlyR]); if (!this.hasWhitespace() && this.acceptDelim(".") && !this.hasWhitespace()) { var i = this._parseIdent([Z.Mixin]); if (!i) return this.finish(n, C.IdentifierExpected, [p.CurlyR]); var s = this.create(qa); r.referenceTypes = [Z.Module], s.setIdentifier(r), n.setIdentifier(i), n.addChild(s); } if (this.accept(p.ParenthesisL)) { if (n.getArguments().addChild(this._parseFunctionArgument())) { for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getArguments().addChild(this._parseFunctionArgument())) return this.finish(n, C.ExpressionExpected); } if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected); } return (this.peekIdent("using") || this.peek(p.CurlyL)) && n.setContent(this._parseMixinContentDeclaration()), this.finish(n); }, e.prototype._parseMixinContentDeclaration = function() { var n = this.create(pu); if (this.acceptIdent("using")) { if (!this.accept(p.ParenthesisL)) return this.finish(n, C.LeftParenthesisExpected, [p.CurlyL]); if (n.getParameters().addChild(this._parseParameterDeclaration())) { for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getParameters().addChild(this._parseParameterDeclaration())) return this.finish(n, C.VariableNameExpected); } if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected, [p.CurlyL]); } return this.peek(p.CurlyL) && this._parseBody(n, this._parseMixinReferenceBodyStatement.bind(this)), this.finish(n); }, e.prototype._parseMixinReferenceBodyStatement = function() { return this._tryParseKeyframeSelector() || this._parseRuleSetDeclaration(); }, e.prototype._parseFunctionArgument = function() { var n = this.create(Qt), r = this.mark(), i = this._parseVariable(); if (i) if (this.accept(p.Colon)) n.setIdentifier(i); else { if (this.accept(rr)) return n.setValue(i), this.finish(n); this.restoreAtMark(r); } return n.setValue(this._parseExpr(!0)) ? (this.accept(rr), n.addChild(this._parsePrio()), this.finish(n)) : n.setValue(this._tryParsePrio()) ? this.finish(n) : null; }, e.prototype._parseURLArgument = function() { var n = this.mark(), r = t.prototype._parseURLArgument.call(this); if (!r || !this.peek(p.ParenthesisR)) { this.restoreAtMark(n); var i = this.create(V); return i.addChild(this._parseBinaryExpr()), this.finish(i); } return r; }, e.prototype._parseOperation = function() { if (!this.peek(p.ParenthesisL)) return null; var n = this.create(V); for (this.consumeToken(); n.addChild(this._parseListElement()); ) this.accept(p.Comma); return this.accept(p.ParenthesisR) ? this.finish(n) : this.finish(n, C.RightParenthesisExpected); }, e.prototype._parseListElement = function() { var n = this.create(fu), r = this._parseBinaryExpr(); if (!r) return null; if (this.accept(p.Colon)) { if (n.setKey(r), !n.setValue(this._parseBinaryExpr())) return this.finish(n, C.ExpressionExpected); } else n.setValue(r); return this.finish(n); }, e.prototype._parseUse = function() { if (!this.peekKeyword("@use")) return null; var n = this.create(Yd); if (this.consumeToken(), !n.addChild(this._parseStringLiteral())) return this.finish(n, C.StringLiteralExpected); if (!this.peek(p.SemiColon) && !this.peek(p.EOF)) { if (!this.peekRegExp(p.Ident, /as|with/)) return this.finish(n, C.UnknownKeyword); if (this.acceptIdent("as") && !n.setIdentifier(this._parseIdent([Z.Module])) && !this.acceptDelim("*")) return this.finish(n, C.IdentifierOrWildcardExpected); if (this.acceptIdent("with")) { if (!this.accept(p.ParenthesisL)) return this.finish(n, C.LeftParenthesisExpected, [p.ParenthesisR]); if (!n.getParameters().addChild(this._parseModuleConfigDeclaration())) return this.finish(n, C.VariableNameExpected); for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getParameters().addChild(this._parseModuleConfigDeclaration())) return this.finish(n, C.VariableNameExpected); if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected); } } return !this.accept(p.SemiColon) && !this.accept(p.EOF) ? this.finish(n, C.SemiColonExpected) : this.finish(n); }, e.prototype._parseModuleConfigDeclaration = function() { var n = this.create(Kd); return n.setIdentifier(this._parseVariable()) ? !this.accept(p.Colon) || !n.setValue(this._parseExpr(!0)) ? this.finish(n, C.VariableValueExpected, [], [p.Comma, p.ParenthesisR]) : this.accept(p.Exclamation) && (this.hasWhitespace() || !this.acceptIdent("default")) ? this.finish(n, C.UnknownKeyword) : this.finish(n) : null; }, e.prototype._parseForward = function() { if (!this.peekKeyword("@forward")) return null; var n = this.create(Qd); if (this.consumeToken(), !n.addChild(this._parseStringLiteral())) return this.finish(n, C.StringLiteralExpected); if (this.acceptIdent("with")) { if (!this.accept(p.ParenthesisL)) return this.finish(n, C.LeftParenthesisExpected, [p.ParenthesisR]); if (!n.getParameters().addChild(this._parseModuleConfigDeclaration())) return this.finish(n, C.VariableNameExpected); for (; this.accept(p.Comma) && !this.peek(p.ParenthesisR); ) if (!n.getParameters().addChild(this._parseModuleConfigDeclaration())) return this.finish(n, C.VariableNameExpected); if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected); } if (!this.peek(p.SemiColon) && !this.peek(p.EOF)) { if (!this.peekRegExp(p.Ident, /as|hide|show/)) return this.finish(n, C.UnknownKeyword); if (this.acceptIdent("as")) { var r = this._parseIdent([Z.Forward]); if (!n.setIdentifier(r)) return this.finish(n, C.IdentifierExpected); if (this.hasWhitespace() || !this.acceptDelim("*")) return this.finish(n, C.WildcardExpected); } if ((this.peekIdent("hide") || this.peekIdent("show")) && !n.addChild(this._parseForwardVisibility())) return this.finish(n, C.IdentifierOrVariableExpected); } return !this.accept(p.SemiColon) && !this.accept(p.EOF) ? this.finish(n, C.SemiColonExpected) : this.finish(n); }, e.prototype._parseForwardVisibility = function() { var n = this.create(Zd); for (n.setIdentifier(this._parseIdent()); n.addChild(this._parseVariable() || this._parseIdent()); ) this.accept(p.Comma); return n.getChildren().length > 1 ? n : null; }, e.prototype._parseSupportsCondition = function() { return this._parseInterpolation() || t.prototype._parseSupportsCondition.call(this); }, e; }(Qi), Dp = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), z = Ge(), Ap = function(t) { Dp(e, t); function e(n, r) { var i = t.call(this, "$", n, r) || this; return Yo(e.scssModuleLoaders), Yo(e.scssModuleBuiltIns), i; } return e.prototype.isImportPathParent = function(n) { return n === v.Forward || n === v.Use || t.prototype.isImportPathParent.call(this, n); }, e.prototype.getCompletionForImportPath = function(n, r) { var i = n.getParent().type; if (i === v.Forward || i === v.Use) for (var s = 0, a = e.scssModuleBuiltIns; s < a.length; s++) { var o = a[s], l = { label: o.label, documentation: o.documentation, textEdit: $.replace(this.getCompletionRange(n), "'".concat(o.label, "'")), kind: j.Module }; r.items.push(l); } return t.prototype.getCompletionForImportPath.call(this, n, r); }, e.prototype.createReplaceFunction = function() { var n = 1; return function(r, i) { return "\\" + i + ": ${" + n++ + ":" + (e.variableDefaults[i] || "") + "}"; }; }, e.prototype.createFunctionProposals = function(n, r, i, s) { for (var a = 0, o = n; a < o.length; a++) { var l = o[a], c = l.func.replace(/\[?(\$\w+)\]?/g, this.createReplaceFunction()), h = l.func.substr(0, l.func.indexOf("(")), u = { label: h, detail: l.func, documentation: l.desc, textEdit: $.replace(this.getCompletionRange(r), c), insertTextFormat: ze.Snippet, kind: j.Function }; i && (u.sortText = "z"), s.items.push(u); } return s; }, e.prototype.getCompletionsForSelector = function(n, r, i) { return this.createFunctionProposals(e.selectorFuncs, null, !0, i), t.prototype.getCompletionsForSelector.call(this, n, r, i); }, e.prototype.getTermProposals = function(n, r, i) { var s = e.builtInFuncs; return n && (s = s.filter(function(a) { return !a.type || !n.restrictions || n.restrictions.indexOf(a.type) !== -1; })), this.createFunctionProposals(s, r, !0, i), t.prototype.getTermProposals.call(this, n, r, i); }, e.prototype.getColorProposals = function(n, r, i) { return this.createFunctionProposals(e.colorProposals, r, !1, i), t.prototype.getColorProposals.call(this, n, r, i); }, e.prototype.getCompletionsForDeclarationProperty = function(n, r) { return this.getCompletionForAtDirectives(r), this.getCompletionsForSelector(null, !0, r), t.prototype.getCompletionsForDeclarationProperty.call(this, n, r); }, e.prototype.getCompletionsForExtendsReference = function(n, r, i) { for (var s = this.getSymbolContext().findSymbolsAtOffset(this.offset, Z.Rule), a = 0, o = s; a < o.length; a++) { var l = o[a], c = { label: l.name, textEdit: $.replace(this.getCompletionRange(r), l.name), kind: j.Function }; i.items.push(c); } return i; }, e.prototype.getCompletionForAtDirectives = function(n) { var r; return (r = n.items).push.apply(r, e.scssAtDirectives), n; }, e.prototype.getCompletionForTopLevel = function(n) { return this.getCompletionForAtDirectives(n), this.getCompletionForModuleLoaders(n), t.prototype.getCompletionForTopLevel.call(this, n), n; }, e.prototype.getCompletionForModuleLoaders = function(n) { var r; return (r = n.items).push.apply(r, e.scssModuleLoaders), n; }, e.variableDefaults = { $red: "1", $green: "2", $blue: "3", $alpha: "1.0", $color: "#000000", $weight: "0.5", $hue: "0", $saturation: "0%", $lightness: "0%", $degrees: "0", $amount: "0", $string: '""', $substring: '"s"', $number: "0", $limit: "1" }, e.colorProposals = [ { func: "red($color)", desc: z("scss.builtin.red", "Gets the red component of a color.") }, { func: "green($color)", desc: z("scss.builtin.green", "Gets the green component of a color.") }, { func: "blue($color)", desc: z("scss.builtin.blue", "Gets the blue component of a color.") }, { func: "mix($color, $color, [$weight])", desc: z("scss.builtin.mix", "Mixes two colors together.") }, { func: "hue($color)", desc: z("scss.builtin.hue", "Gets the hue component of a color.") }, { func: "saturation($color)", desc: z("scss.builtin.saturation", "Gets the saturation component of a color.") }, { func: "lightness($color)", desc: z("scss.builtin.lightness", "Gets the lightness component of a color.") }, { func: "adjust-hue($color, $degrees)", desc: z("scss.builtin.adjust-hue", "Changes the hue of a color.") }, { func: "lighten($color, $amount)", desc: z("scss.builtin.lighten", "Makes a color lighter.") }, { func: "darken($color, $amount)", desc: z("scss.builtin.darken", "Makes a color darker.") }, { func: "saturate($color, $amount)", desc: z("scss.builtin.saturate", "Makes a color more saturated.") }, { func: "desaturate($color, $amount)", desc: z("scss.builtin.desaturate", "Makes a color less saturated.") }, { func: "grayscale($color)", desc: z("scss.builtin.grayscale", "Converts a color to grayscale.") }, { func: "complement($color)", desc: z("scss.builtin.complement", "Returns the complement of a color.") }, { func: "invert($color)", desc: z("scss.builtin.invert", "Returns the inverse of a color.") }, { func: "alpha($color)", desc: z("scss.builtin.alpha", "Gets the opacity component of a color.") }, { func: "opacity($color)", desc: "Gets the alpha component (opacity) of a color." }, { func: "rgba($color, $alpha)", desc: z("scss.builtin.rgba", "Changes the alpha component for a color.") }, { func: "opacify($color, $amount)", desc: z("scss.builtin.opacify", "Makes a color more opaque.") }, { func: "fade-in($color, $amount)", desc: z("scss.builtin.fade-in", "Makes a color more opaque.") }, { func: "transparentize($color, $amount)", desc: z("scss.builtin.transparentize", "Makes a color more transparent.") }, { func: "fade-out($color, $amount)", desc: z("scss.builtin.fade-out", "Makes a color more transparent.") }, { func: "adjust-color($color, [$red], [$green], [$blue], [$hue], [$saturation], [$lightness], [$alpha])", desc: z("scss.builtin.adjust-color", "Increases or decreases one or more components of a color.") }, { func: "scale-color($color, [$red], [$green], [$blue], [$saturation], [$lightness], [$alpha])", desc: z("scss.builtin.scale-color", "Fluidly scales one or more properties of a color.") }, { func: "change-color($color, [$red], [$green], [$blue], [$hue], [$saturation], [$lightness], [$alpha])", desc: z("scss.builtin.change-color", "Changes one or more properties of a color.") }, { func: "ie-hex-str($color)", desc: z("scss.builtin.ie-hex-str", "Converts a color into the format understood by IE filters.") } ], e.selectorFuncs = [ { func: "selector-nest($selectors…)", desc: z("scss.builtin.selector-nest", "Nests selector beneath one another like they would be nested in the stylesheet.") }, { func: "selector-append($selectors…)", desc: z("scss.builtin.selector-append", "Appends selectors to one another without spaces in between.") }, { func: "selector-extend($selector, $extendee, $extender)", desc: z("scss.builtin.selector-extend", "Extends $extendee with $extender within $selector.") }, { func: "selector-replace($selector, $original, $replacement)", desc: z("scss.builtin.selector-replace", "Replaces $original with $replacement within $selector.") }, { func: "selector-unify($selector1, $selector2)", desc: z("scss.builtin.selector-unify", "Unifies two selectors to produce a selector that matches elements matched by both.") }, { func: "is-superselector($super, $sub)", desc: z("scss.builtin.is-superselector", "Returns whether $super matches all the elements $sub does, and possibly more.") }, { func: "simple-selectors($selector)", desc: z("scss.builtin.simple-selectors", "Returns the simple selectors that comprise a compound selector.") }, { func: "selector-parse($selector)", desc: z("scss.builtin.selector-parse", "Parses a selector into the format returned by &.") } ], e.builtInFuncs = [ { func: "unquote($string)", desc: z("scss.builtin.unquote", "Removes quotes from a string.") }, { func: "quote($string)", desc: z("scss.builtin.quote", "Adds quotes to a string.") }, { func: "str-length($string)", desc: z("scss.builtin.str-length", "Returns the number of characters in a string.") }, { func: "str-insert($string, $insert, $index)", desc: z("scss.builtin.str-insert", "Inserts $insert into $string at $index.") }, { func: "str-index($string, $substring)", desc: z("scss.builtin.str-index", "Returns the index of the first occurance of $substring in $string.") }, { func: "str-slice($string, $start-at, [$end-at])", desc: z("scss.builtin.str-slice", "Extracts a substring from $string.") }, { func: "to-upper-case($string)", desc: z("scss.builtin.to-upper-case", "Converts a string to upper case.") }, { func: "to-lower-case($string)", desc: z("scss.builtin.to-lower-case", "Converts a string to lower case.") }, { func: "percentage($number)", desc: z("scss.builtin.percentage", "Converts a unitless number to a percentage."), type: "percentage" }, { func: "round($number)", desc: z("scss.builtin.round", "Rounds a number to the nearest whole number.") }, { func: "ceil($number)", desc: z("scss.builtin.ceil", "Rounds a number up to the next whole number.") }, { func: "floor($number)", desc: z("scss.builtin.floor", "Rounds a number down to the previous whole number.") }, { func: "abs($number)", desc: z("scss.builtin.abs", "Returns the absolute value of a number.") }, { func: "min($numbers)", desc: z("scss.builtin.min", "Finds the minimum of several numbers.") }, { func: "max($numbers)", desc: z("scss.builtin.max", "Finds the maximum of several numbers.") }, { func: "random([$limit])", desc: z("scss.builtin.random", "Returns a random number.") }, { func: "length($list)", desc: z("scss.builtin.length", "Returns the length of a list.") }, { func: "nth($list, $n)", desc: z("scss.builtin.nth", "Returns a specific item in a list.") }, { func: "set-nth($list, $n, $value)", desc: z("scss.builtin.set-nth", "Replaces the nth item in a list.") }, { func: "join($list1, $list2, [$separator])", desc: z("scss.builtin.join", "Joins together two lists into one.") }, { func: "append($list1, $val, [$separator])", desc: z("scss.builtin.append", "Appends a single value onto the end of a list.") }, { func: "zip($lists)", desc: z("scss.builtin.zip", "Combines several lists into a single multidimensional list.") }, { func: "index($list, $value)", desc: z("scss.builtin.index", "Returns the position of a value within a list.") }, { func: "list-separator(#list)", desc: z("scss.builtin.list-separator", "Returns the separator of a list.") }, { func: "map-get($map, $key)", desc: z("scss.builtin.map-get", "Returns the value in a map associated with a given key.") }, { func: "map-merge($map1, $map2)", desc: z("scss.builtin.map-merge", "Merges two maps together into a new map.") }, { func: "map-remove($map, $keys)", desc: z("scss.builtin.map-remove", "Returns a new map with keys removed.") }, { func: "map-keys($map)", desc: z("scss.builtin.map-keys", "Returns a list of all keys in a map.") }, { func: "map-values($map)", desc: z("scss.builtin.map-values", "Returns a list of all values in a map.") }, { func: "map-has-key($map, $key)", desc: z("scss.builtin.map-has-key", "Returns whether a map has a value associated with a given key.") }, { func: "keywords($args)", desc: z("scss.builtin.keywords", "Returns the keywords passed to a function that takes variable arguments.") }, { func: "feature-exists($feature)", desc: z("scss.builtin.feature-exists", "Returns whether a feature exists in the current Sass runtime.") }, { func: "variable-exists($name)", desc: z("scss.builtin.variable-exists", "Returns whether a variable with the given name exists in the current scope.") }, { func: "global-variable-exists($name)", desc: z("scss.builtin.global-variable-exists", "Returns whether a variable with the given name exists in the global scope.") }, { func: "function-exists($name)", desc: z("scss.builtin.function-exists", "Returns whether a function with the given name exists.") }, { func: "mixin-exists($name)", desc: z("scss.builtin.mixin-exists", "Returns whether a mixin with the given name exists.") }, { func: "inspect($value)", desc: z("scss.builtin.inspect", "Returns the string representation of a value as it would be represented in Sass.") }, { func: "type-of($value)", desc: z("scss.builtin.type-of", "Returns the type of a value.") }, { func: "unit($number)", desc: z("scss.builtin.unit", "Returns the unit(s) associated with a number.") }, { func: "unitless($number)", desc: z("scss.builtin.unitless", "Returns whether a number has units.") }, { func: "comparable($number1, $number2)", desc: z("scss.builtin.comparable", "Returns whether two numbers can be added, subtracted, or compared.") }, { func: "call($name, $args…)", desc: z("scss.builtin.call", "Dynamically calls a Sass function.") } ], e.scssAtDirectives = [ { label: "@extend", documentation: z("scss.builtin.@extend", "Inherits the styles of another selector."), kind: j.Keyword }, { label: "@at-root", documentation: z("scss.builtin.@at-root", "Causes one or more rules to be emitted at the root of the document."), kind: j.Keyword }, { label: "@debug", documentation: z("scss.builtin.@debug", "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files."), kind: j.Keyword }, { label: "@warn", documentation: z("scss.builtin.@warn", "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option."), kind: j.Keyword }, { label: "@error", documentation: z("scss.builtin.@error", "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions."), kind: j.Keyword }, { label: "@if", documentation: z("scss.builtin.@if", "Includes the body if the expression does not evaluate to `false` or `null`."), insertText: `@if \${1:expr} { $0 }`, insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@for", documentation: z("scss.builtin.@for", "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause."), insertText: "@for \\$${1:var} from ${2:start} ${3|to,through|} ${4:end} {\n $0\n}", insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@each", documentation: z("scss.builtin.@each", "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`."), insertText: "@each \\$${1:var} in ${2:list} {\n $0\n}", insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@while", documentation: z("scss.builtin.@while", "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`."), insertText: `@while \${1:condition} { $0 }`, insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@mixin", documentation: z("scss.builtin.@mixin", "Defines styles that can be re-used throughout the stylesheet with `@include`."), insertText: `@mixin \${1:name} { $0 }`, insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@include", documentation: z("scss.builtin.@include", "Includes the styles defined by another mixin into the current rule."), kind: j.Keyword }, { label: "@function", documentation: z("scss.builtin.@function", "Defines complex operations that can be re-used throughout stylesheets."), kind: j.Keyword } ], e.scssModuleLoaders = [ { label: "@use", documentation: z("scss.builtin.@use", "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/at-rules/use" }], insertText: "@use $0;", insertTextFormat: ze.Snippet, kind: j.Keyword }, { label: "@forward", documentation: z("scss.builtin.@forward", "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/at-rules/forward" }], insertText: "@forward $0;", insertTextFormat: ze.Snippet, kind: j.Keyword } ], e.scssModuleBuiltIns = [ { label: "sass:math", documentation: z("scss.builtin.sass:math", "Provides functions that operate on numbers."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/math" }] }, { label: "sass:string", documentation: z("scss.builtin.sass:string", "Makes it easy to combine, search, or split apart strings."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/string" }] }, { label: "sass:color", documentation: z("scss.builtin.sass:color", "Generates new colors based on existing ones, making it easy to build color themes."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/color" }] }, { label: "sass:list", documentation: z("scss.builtin.sass:list", "Lets you access and modify values in lists."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/list" }] }, { label: "sass:map", documentation: z("scss.builtin.sass:map", "Makes it possible to look up the value associated with a key in a map, and much more."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/map" }] }, { label: "sass:selector", documentation: z("scss.builtin.sass:selector", "Provides access to Sass’s powerful selector engine."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/selector" }] }, { label: "sass:meta", documentation: z("scss.builtin.sass:meta", "Exposes the details of Sass’s inner workings."), references: [{ name: "Sass documentation", url: "https://sass-lang.com/documentation/modules/meta" }] } ], e; }(es); function Yo(t) { t.forEach(function(e) { if (e.documentation && e.references && e.references.length > 0) { var n = typeof e.documentation == "string" ? { kind: "markdown", value: e.documentation } : { kind: "markdown", value: e.documentation.value }; n.value += ` `, n.value += e.references.map(function(r) { return "[".concat(r.name, "](").concat(r.url, ")"); }).join(" | "), e.documentation = n; } }); } var Np = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Ko = "/".charCodeAt(0), Mp = ` `.charCodeAt(0), zp = "\r".charCodeAt(0), Lp = "\f".charCodeAt(0), Hr = "`".charCodeAt(0), Gr = ".".charCodeAt(0), Pp = p.CustomToken, Ii = Pp++, Yl = function(t) { Np(e, t); function e() { return t !== null && t.apply(this, arguments) || this; } return e.prototype.scanNext = function(n) { var r = this.escapedJavaScript(); return r !== null ? this.finishToken(n, r) : this.stream.advanceIfChars([Gr, Gr, Gr]) ? this.finishToken(n, Ii) : t.prototype.scanNext.call(this, n); }, e.prototype.comment = function() { return t.prototype.comment.call(this) ? !0 : !this.inURL && this.stream.advanceIfChars([Ko, Ko]) ? (this.stream.advanceWhileChar(function(n) { switch (n) { case Mp: case zp: case Lp: return !1; default: return !0; } }), !0) : !1; }, e.prototype.escapedJavaScript = function() { var n = this.stream.peekChar(); return n === Hr ? (this.stream.advance(1), this.stream.advanceWhileChar(function(r) { return r !== Hr; }), this.stream.advanceIfChar(Hr) ? p.EscapedJavaScript : p.BadEscapedJavaScript) : null; }, e; }(Tn), Ip = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), Tp = function(t) { Ip(e, t); function e() { return t.call(this, new Yl()) || this; } return e.prototype._parseStylesheetStatement = function(n) { return n === void 0 && (n = !1), this.peek(p.AtKeyword) ? this._parseVariableDeclaration() || this._parsePlugin() || t.prototype._parseStylesheetAtStatement.call(this, n) : this._tryParseMixinDeclaration() || this._tryParseMixinReference() || this._parseFunction() || this._parseRuleset(!0); }, e.prototype._parseImport = function() { if (!this.peekKeyword("@import") && !this.peekKeyword("@import-once")) return null; var n = this.create(Gi); if (this.consumeToken(), this.accept(p.ParenthesisL)) { if (!this.accept(p.Ident)) return this.finish(n, C.IdentifierExpected, [p.SemiColon]); do if (!this.accept(p.Comma)) break; while (this.accept(p.Ident)); if (!this.accept(p.ParenthesisR)) return this.finish(n, C.RightParenthesisExpected, [p.SemiColon]); } return !n.addChild(this._parseURILiteral()) && !n.addChild(this._parseStringLiteral()) ? this.finish(n, C.URIOrStringExpected, [p.SemiColon]) : (!this.peek(p.SemiColon) && !this.peek(p.EOF) && n.setMedialist(this._parseMediaQueryList()), this.finish(n)); }, e.prototype._parsePlugin = function() { if (!this.peekKeyword("@plugin")) return null; var n = this.createNode(v.Plugin); return this.consumeToken(), n.addChild(this._parseStringLiteral()) ? this.accept(p.SemiColon) ? this.finish(n) : this.finish(n, C.SemiColonExpected) : this.finish(n, C.StringLiteralExpected); }, e.prototype._parseMediaQuery = function() { var n = t.prototype._parseMediaQuery.call(this); if (!n) { var r = this.create(Al); return r.addChild(this._parseVariable()) ? this.finish(r) : null; } return n; }, e.prototype._parseMediaDeclaration = function(n) { return n === void 0 && (n = !1), this._tryParseRuleset(n) || this._tryToParseDeclaration() || this._tryParseMixinDeclaration() || this._tryParseMixinReference() || this._parseDetachedRuleSetMixin() || this._parseStylesheetStatement(n); }, e.prototype._parseMediaFeatureName = function() { return this._parseIdent() || this._parseVariable(); }, e.prototype._parseVariableDeclaration = function(n) { n === void 0 && (n = []); var r = this.create(Rr), i = this.mark(); if (!r.setVariable(this._parseVariable(!0))) return null; if (this.accept(p.Colon)) { if (this.prevToken && (r.colonPosition = this.prevToken.offset), r.setValue(this._parseDetachedRuleSet())) r.needsSemicolon = !1; else if (!r.setValue(this._parseExpr())) return this.finish(r, C.VariableValueExpected, [], n); r.addChild(this._parsePrio()); } else return this.restoreAtMark(i), null; return this.peek(p.SemiColon) && (r.semicolonPosition = this.token.offset), this.finish(r); }, e.prototype._parseDetachedRuleSet = function() { var n = this.mark(); if (this.peekDelim("#") || this.peekDelim(".")) if (this.consumeToken(), !this.hasWhitespace() && this.accept(p.ParenthesisL)) { var r = this.create(Fn); if (r.getParameters().addChild(this._parseMixinParameter())) for (; (this.accept(p.Comma) || this.accept(p.SemiColon)) && !this.peek(p.ParenthesisR); ) r.getParameters().addChild(this._parseMixinParameter()) || this.markError(r, C.IdentifierExpected, [], [p.ParenthesisR]); if (!this.accept(p.ParenthesisR)) return this.restoreAtMark(n), null; } else return this.restoreAtMark(n), null; if (!this.peek(p.CurlyL)) return null; var i = this.create(ce); return this._parseBody(i, this._parseDetachedRuleSetBody.bind(this)), this.finish(i); }, e.prototype._parseDetachedRuleSetBody = function() { return this._tryParseKeyframeSelector() || this._parseRuleSetDeclaration(); }, e.prototype._addLookupChildren = function(n) { if (!n.addChild(this._parseLookupValue())) return !1; for (var r = !1; this.peek(p.BracketL) && (r = !0), !!n.addChild(this._parseLookupValue()); ) r = !1; return !r; }, e.prototype._parseLookupValue = function() { var n = this.create(V), r = this.mark(); return this.accept(p.BracketL) ? (n.addChild(this._parseVariable(!1, !0)) || n.addChild(this._parsePropertyIdentifier())) && this.accept(p.BracketR) || this.accept(p.BracketR) ? n : (this.restoreAtMark(r), null) : (this.restoreAtMark(r), null); }, e.prototype._parseVariable = function(n, r) { n === void 0 && (n = !1), r === void 0 && (r = !1); var i = !n && this.peekDelim("$"); if (!this.peekDelim("@") && !i && !this.peek(p.AtKeyword)) return null; for (var s = this.create(Ki), a = this.mark(); this.acceptDelim("@") || !n && this.acceptDelim("$"); ) if (this.hasWhitespace()) return this.restoreAtMark(a), null; return !this.accept(p.AtKeyword) && !this.accept(p.Ident) ? (this.restoreAtMark(a), null) : !r && this.peek(p.BracketL) && !this._addLookupChildren(s) ? (this.restoreAtMark(a), null) : s; }, e.prototype._parseTermExpression = function() { return this._parseVariable() || this._parseEscaped() || t.prototype._parseTermExpression.call(this) || this._tryParseMixinReference(!1); }, e.prototype._parseEscaped = function() { if (this.peek(p.EscapedJavaScript) || this.peek(p.BadEscapedJavaScript)) { var n = this.createNode(v.EscapedValue); return this.consumeToken(), this.finish(n); } if (this.peekDelim("~")) { var n = this.createNode(v.EscapedValue); return this.consumeToken(), this.accept(p.String) || this.accept(p.EscapedJavaScript) ? this.finish(n) : this.finish(n, C.TermExpected); } return null; }, e.prototype._parseOperator = function() { var n = this._parseGuardOperator(); return n || t.prototype._parseOperator.call(this); }, e.prototype._parseGuardOperator = function() { if (this.peekDelim(">")) { var n = this.createNode(v.Operator); return this.consumeToken(), this.acceptDelim("="), n; } else if (this.peekDelim("=")) { var n = this.createNode(v.Operator); return this.consumeToken(), this.acceptDelim("<"), n; } else if (this.peekDelim("<")) { var n = this.createNode(v.Operator); return this.consumeToken(), this.acceptDelim("="), n; } return null; }, e.prototype._parseRuleSetDeclaration = function() { return this.peek(p.AtKeyword) ? this._parseKeyframe() || this._parseMedia(!0) || this._parseImport() || this._parseSupports(!0) || this._parseDetachedRuleSetMixin() || this._parseVariableDeclaration() || t.prototype._parseRuleSetDeclarationAtStatement.call(this) : this._tryParseMixinDeclaration() || this._tryParseRuleset(!0) || this._tryParseMixinReference() || this._parseFunction() || this._parseExtend() || t.prototype._parseRuleSetDeclaration.call(this); }, e.prototype._parseKeyframeIdent = function() { return this._parseIdent([Z.Keyframe]) || this._parseVariable(); }, e.prototype._parseKeyframeSelector = function() { return this._parseDetachedRuleSetMixin() || t.prototype._parseKeyframeSelector.call(this); }, e.prototype._parseSimpleSelectorBody = function() { return this._parseSelectorCombinator() || t.prototype._parseSimpleSelectorBody.call(this); }, e.prototype._parseSelector = function(n) { var r = this.create(Wn), i = !1; for (n && (i = r.addChild(this._parseCombinator())); r.addChild(this._parseSimpleSelector()); ) { i = !0; var s = this.mark(); if (r.addChild(this._parseGuard()) && this.peek(p.CurlyL)) break; this.restoreAtMark(s), r.addChild(this._parseCombinator()); } return i ? this.finish(r) : null; }, e.prototype._parseSelectorCombinator = function() { if (this.peekDelim("&")) { var n = this.createNode(v.SelectorCombinator); for (this.consumeToken(); !this.hasWhitespace() && (this.acceptDelim("-") || this.accept(p.Num) || this.accept(p.Dimension) || n.addChild(this._parseIdent()) || this.acceptDelim("&")); ) ; return this.finish(n); } return null; }, e.prototype._parseSelectorIdent = function() { if (!this.peekInterpolatedIdent()) return null; var n = this.createNode(v.SelectorInterpolation), r = this._acceptInterpolatedIdent(n); return r ? this.finish(n) : null; }, e.prototype._parsePropertyIdentifier = function(n) { n === void 0 && (n = !1); var r = /^[\w-]+/; if (!this.peekInterpolatedIdent() && !this.peekRegExp(this.token.type, r)) return null; var i = this.mark(), s = this.create(Ue); s.isCustomProperty = this.acceptDelim("-") && this.acceptDelim("-"); var a = !1; return n ? s.isCustomProperty ? a = s.addChild(this._parseIdent()) : a = s.addChild(this._parseRegexp(r)) : s.isCustomProperty ? a = this._acceptInterpolatedIdent(s) : a = this._acceptInterpolatedIdent(s, r), a ? (!n && !this.hasWhitespace() && (this.acceptDelim("+"), this.hasWhitespace() || this.acceptIdent("_")), this.finish(s)) : (this.restoreAtMark(i), null); }, e.prototype.peekInterpolatedIdent = function() { return this.peek(p.Ident) || this.peekDelim("@") || this.peekDelim("$") || this.peekDelim("-"); }, e.prototype._acceptInterpolatedIdent = function(n, r) { for (var i = this, s = !1, a = function() { var l = i.mark(); return i.acceptDelim("-") && (i.hasWhitespace() || i.acceptDelim("-"), i.hasWhitespace()) ? (i.restoreAtMark(l), null) : i._parseInterpolation(); }, o = r ? function() { return i.acceptRegexp(r); } : function() { return i.accept(p.Ident); }; (o() || n.addChild(this._parseInterpolation() || this.try(a))) && (s = !0, !this.hasWhitespace()); ) ; return s; }, e.prototype._parseInterpolation = function() { var n = this.mark(); if (this.peekDelim("@") || this.peekDelim("$")) { var r = this.createNode(v.Interpolation); return this.consumeToken(), this.hasWhitespace() || !this.accept(p.CurlyL) ? (this.restoreAtMark(n), null) : r.addChild(this._parseIdent()) ? this.accept(p.CurlyR) ? this.finish(r) : this.finish(r, C.RightCurlyExpected) : this.finish(r, C.IdentifierExpected); } return null; }, e.prototype._tryParseMixinDeclaration = function() { var n = this.mark(), r = this.create(Fn); if (!r.setIdentifier(this._parseMixinDeclarationIdentifier()) || !this.accept(p.ParenthesisL)) return this.restoreAtMark(n), null; if (r.getParameters().addChild(this._parseMixinParameter())) for (; (this.accept(p.Comma) || this.accept(p.SemiColon)) && !this.peek(p.ParenthesisR); ) r.getParameters().addChild(this._parseMixinParameter()) || this.markError(r, C.IdentifierExpected, [], [p.ParenthesisR]); return this.accept(p.ParenthesisR) ? (r.setGuard(this._parseGuard()), this.peek(p.CurlyL) ? this._parseBody(r, this._parseMixInBodyDeclaration.bind(this)) : (this.restoreAtMark(n), null)) : (this.restoreAtMark(n), null); }, e.prototype._parseMixInBodyDeclaration = function() { return this._parseFontFace() || this._parseRuleSetDeclaration(); }, e.prototype._parseMixinDeclarationIdentifier = function() { var n; if (this.peekDelim("#") || this.peekDelim(".")) { if (n = this.create(Ue), this.consumeToken(), this.hasWhitespace() || !n.addChild(this._parseIdent())) return null; } else if (this.peek(p.Hash)) n = this.create(Ue), this.consumeToken(); else return null; return n.referenceTypes = [Z.Mixin], this.finish(n); }, e.prototype._parsePseudo = function() { if (!this.peek(p.Colon)) return null; var n = this.mark(), r = this.create(Rn); return this.consumeToken(), this.acceptIdent("extend") ? this._completeExtends(r) : (this.restoreAtMark(n), t.prototype._parsePseudo.call(this)); }, e.prototype._parseExtend = function() { if (!this.peekDelim("&")) return null; var n = this.mark(), r = this.create(Rn); return this.consumeToken(), this.hasWhitespace() || !this.accept(p.Colon) || !this.acceptIdent("extend") ? (this.restoreAtMark(n), null) : this._completeExtends(r); }, e.prototype._completeExtends = function(n) { if (!this.accept(p.ParenthesisL)) return this.finish(n, C.LeftParenthesisExpected); var r = n.getSelectors(); if (!r.addChild(this._parseSelector(!0))) return this.finish(n, C.SelectorExpected); for (; this.accept(p.Comma); ) if (!r.addChild(this._parseSelector(!0))) return this.finish(n, C.SelectorExpected); return this.accept(p.ParenthesisR) ? this.finish(n) : this.finish(n, C.RightParenthesisExpected); }, e.prototype._parseDetachedRuleSetMixin = function() { if (!this.peek(p.AtKeyword)) return null; var n = this.mark(), r = this.create(ur); return r.addChild(this._parseVariable(!0)) && (this.hasWhitespace() || !this.accept(p.ParenthesisL)) ? (this.restoreAtMark(n), null) : this.accept(p.ParenthesisR) ? this.finish(r) : this.finish(r, C.RightParenthesisExpected); }, e.prototype._tryParseMixinReference = function(n) { n === void 0 && (n = !0); for (var r = this.mark(), i = this.create(ur), s = this._parseMixinDeclarationIdentifier(); s; ) { this.acceptDelim(">"); var a = this._parseMixinDeclarationIdentifier(); if (a) i.getNamespaces().addChild(s), s = a; else break; } if (!i.setIdentifier(s)) return this.restoreAtMark(r), null; var o = !1; if (this.accept(p.ParenthesisL)) { if (o = !0, i.getArguments().addChild(this._parseMixinArgument())) { for (; (this.accept(p.Comma) || this.accept(p.SemiColon)) && !this.peek(p.ParenthesisR); ) if (!i.getArguments().addChild(this._parseMixinArgument())) return this.finish(i, C.ExpressionExpected); } if (!this.accept(p.ParenthesisR)) return this.finish(i, C.RightParenthesisExpected); s.referenceTypes = [Z.Mixin]; } else s.referenceTypes = [Z.Mixin, Z.Rule]; return this.peek(p.BracketL) ? n || this._addLookupChildren(i) : i.addChild(this._parsePrio()), !o && !this.peek(p.SemiColon) && !this.peek(p.CurlyR) && !this.peek(p.EOF) ? (this.restoreAtMark(r), null) : this.finish(i); }, e.prototype._parseMixinArgument = function() { var n = this.create(Qt), r = this.mark(), i = this._parseVariable(); return i && (this.accept(p.Colon) ? n.setIdentifier(i) : this.restoreAtMark(r)), n.setValue(this._parseDetachedRuleSet() || this._parseExpr(!0)) ? this.finish(n) : (this.restoreAtMark(r), null); }, e.prototype._parseMixinParameter = function() { var n = this.create(_r); if (this.peekKeyword("@rest")) { var r = this.create(V); return this.consumeToken(), this.accept(Ii) ? (n.setIdentifier(this.finish(r)), this.finish(n)) : this.finish(n, C.DotExpected, [], [p.Comma, p.ParenthesisR]); } if (this.peek(Ii)) { var i = this.create(V); return this.consumeToken(), n.setIdentifier(this.finish(i)), this.finish(n); } var s = !1; return n.setIdentifier(this._parseVariable()) && (this.accept(p.Colon), s = !0), !n.setDefaultValue(this._parseDetachedRuleSet() || this._parseExpr(!0)) && !s ? null : this.finish(n); }, e.prototype._parseGuard = function() { if (!this.peekIdent("when")) return null; var n = this.create(mu); if (this.consumeToken(), n.isNegated = this.acceptIdent("not"), !n.getConditions().addChild(this._parseGuardCondition())) return this.finish(n, C.ConditionExpected); for (; this.acceptIdent("and") || this.accept(p.Comma); ) if (!n.getConditions().addChild(this._parseGuardCondition())) return this.finish(n, C.ConditionExpected); return this.finish(n); }, e.prototype._parseGuardCondition = function() { if (!this.peek(p.ParenthesisL)) return null; var n = this.create(gu); return this.consumeToken(), n.addChild(this._parseExpr()), this.accept(p.ParenthesisR) ? this.finish(n) : this.finish(n, C.RightParenthesisExpected); }, e.prototype._parseFunction = function() { var n = this.mark(), r = this.create(On); if (!r.setIdentifier(this._parseFunctionIdentifier())) return null; if (this.hasWhitespace() || !this.accept(p.ParenthesisL)) return this.restoreAtMark(n), null; if (r.getArguments().addChild(this._parseMixinArgument())) { for (; (this.accept(p.Comma) || this.accept(p.SemiColon)) && !this.peek(p.ParenthesisR); ) if (!r.getArguments().addChild(this._parseMixinArgument())) return this.finish(r, C.ExpressionExpected); } return this.accept(p.ParenthesisR) ? this.finish(r) : this.finish(r, C.RightParenthesisExpected); }, e.prototype._parseFunctionIdentifier = function() { if (this.peekDelim("%")) { var n = this.create(Ue); return n.referenceTypes = [Z.Function], this.consumeToken(), this.finish(n); } return t.prototype._parseFunctionIdentifier.call(this); }, e.prototype._parseURLArgument = function() { var n = this.mark(), r = t.prototype._parseURLArgument.call(this); if (!r || !this.peek(p.ParenthesisR)) { this.restoreAtMark(n); var i = this.create(V); return i.addChild(this._parseBinaryExpr()), this.finish(i); } return r; }, e; }(Qi), Wp = function() { var t = function(e, n) { return t = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, i) { r.__proto__ = i; } || function(r, i) { for (var s in i) Object.prototype.hasOwnProperty.call(i, s) && (r[s] = i[s]); }, t(e, n); }; return function(e, n) { if (typeof n != "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); t(e, n); function r() { this.constructor = e; } e.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r()); }; }(), B = Ge(), Op = function(t) { Wp(e, t); function e(n, r) { return t.call(this, "@", n, r) || this; } return e.prototype.createFunctionProposals = function(n, r, i, s) { for (var a = 0, o = n; a < o.length; a++) { var l = o[a], c = { label: l.name, detail: l.example, documentation: l.description, textEdit: $.replace(this.getCompletionRange(r), l.name + "($0)"), insertTextFormat: ze.Snippet, kind: j.Function }; i && (c.sortText = "z"), s.items.push(c); } return s; }, e.prototype.getTermProposals = function(n, r, i) { var s = e.builtInProposals; return n && (s = s.filter(function(a) { return !a.type || !n.restrictions || n.restrictions.indexOf(a.type) !== -1; })), this.createFunctionProposals(s, r, !0, i), t.prototype.getTermProposals.call(this, n, r, i); }, e.prototype.getColorProposals = function(n, r, i) { return this.createFunctionProposals(e.colorProposals, r, !1, i), t.prototype.getColorProposals.call(this, n, r, i); }, e.prototype.getCompletionsForDeclarationProperty = function(n, r) { return this.getCompletionsForSelector(null, !0, r), t.prototype.getCompletionsForDeclarationProperty.call(this, n, r); }, e.builtInProposals = [ { name: "if", example: "if(condition, trueValue [, falseValue]);", description: B("less.builtin.if", "returns one of two values depending on a condition.") }, { name: "boolean", example: "boolean(condition);", description: B("less.builtin.boolean", '"store" a boolean test for later evaluation in a guard or if().') }, { name: "length", example: "length(@list);", description: B("less.builtin.length", "returns the number of elements in a value list") }, { name: "extract", example: "extract(@list, index);", description: B("less.builtin.extract", "returns a value at the specified position in the list") }, { name: "range", example: "range([start, ] end [, step]);", description: B("less.builtin.range", "generate a list spanning a range of values") }, { name: "each", example: "each(@list, ruleset);", description: B("less.builtin.each", "bind the evaluation of a ruleset to each member of a list.") }, { name: "escape", example: "escape(@string);", description: B("less.builtin.escape", "URL encodes a string") }, { name: "e", example: "e(@string);", description: B("less.builtin.e", "escape string content") }, { name: "replace", example: "replace(@string, @pattern, @replacement[, @flags]);", description: B("less.builtin.replace", "string replace") }, { name: "unit", example: "unit(@dimension, [@unit: '']);", description: B("less.builtin.unit", "remove or change the unit of a dimension") }, { name: "color", example: "color(@string);", description: B("less.builtin.color", "parses a string to a color"), type: "color" }, { name: "convert", example: "convert(@value, unit);", description: B("less.builtin.convert", "converts numbers from one type into another") }, { name: "data-uri", example: "data-uri([mimetype,] url);", description: B("less.builtin.data-uri", "inlines a resource and falls back to `url()`"), type: "url" }, { name: "abs", description: B("less.builtin.abs", "absolute value of a number"), example: "abs(number);" }, { name: "acos", description: B("less.builtin.acos", "arccosine - inverse of cosine function"), example: "acos(number);" }, { name: "asin", description: B("less.builtin.asin", "arcsine - inverse of sine function"), example: "asin(number);" }, { name: "ceil", example: "ceil(@number);", description: B("less.builtin.ceil", "rounds up to an integer") }, { name: "cos", description: B("less.builtin.cos", "cosine function"), example: "cos(number);" }, { name: "floor", description: B("less.builtin.floor", "rounds down to an integer"), example: "floor(@number);" }, { name: "percentage", description: B("less.builtin.percentage", "converts to a %, e.g. 0.5 > 50%"), example: "percentage(@number);", type: "percentage" }, { name: "round", description: B("less.builtin.round", "rounds a number to a number of places"), example: "round(number, [places: 0]);" }, { name: "sqrt", description: B("less.builtin.sqrt", "calculates square root of a number"), example: "sqrt(number);" }, { name: "sin", description: B("less.builtin.sin", "sine function"), example: "sin(number);" }, { name: "tan", description: B("less.builtin.tan", "tangent function"), example: "tan(number);" }, { name: "atan", description: B("less.builtin.atan", "arctangent - inverse of tangent function"), example: "atan(number);" }, { name: "pi", description: B("less.builtin.pi", "returns pi"), example: "pi();" }, { name: "pow", description: B("less.builtin.pow", "first argument raised to the power of the second argument"), example: "pow(@base, @exponent);" }, { name: "mod", description: B("less.builtin.mod", "first argument modulus second argument"), example: "mod(number, number);" }, { name: "min", description: B("less.builtin.min", "returns the lowest of one or more values"), example: "min(@x, @y);" }, { name: "max", description: B("less.builtin.max", "returns the lowest of one or more values"), example: "max(@x, @y);" } ], e.colorProposals = [ { name: "argb", example: "argb(@color);", description: B("less.builtin.argb", "creates a #AARRGGBB") }, { name: "hsl", example: "hsl(@hue, @saturation, @lightness);", description: B("less.builtin.hsl", "creates a color") }, { name: "hsla", example: "hsla(@hue, @saturation, @lightness, @alpha);", description: B("less.builtin.hsla", "creates a color") }, { name: "hsv", example: "hsv(@hue, @saturation, @value);", description: B("less.builtin.hsv", "creates a color") }, { name: "hsva", example: "hsva(@hue, @saturation, @value, @alpha);", description: B("less.builtin.hsva", "creates a color") }, { name: "hue", example: "hue(@color);", description: B("less.builtin.hue", "returns the `hue` channel of `@color` in the HSL space") }, { name: "saturation", example: "saturation(@color);", description: B("less.builtin.saturation", "returns the `saturation` channel of `@color` in the HSL space") }, { name: "lightness", example: "lightness(@color);", description: B("less.builtin.lightness", "returns the `lightness` channel of `@color` in the HSL space") }, { name: "hsvhue", example: "hsvhue(@color);", description: B("less.builtin.hsvhue", "returns the `hue` channel of `@color` in the HSV space") }, { name: "hsvsaturation", example: "hsvsaturation(@color);", description: B("less.builtin.hsvsaturation", "returns the `saturation` channel of `@color` in the HSV space") }, { name: "hsvvalue", example: "hsvvalue(@color);", description: B("less.builtin.hsvvalue", "returns the `value` channel of `@color` in the HSV space") }, { name: "red", example: "red(@color);", description: B("less.builtin.red", "returns the `red` channel of `@color`") }, { name: "green", example: "green(@color);", description: B("less.builtin.green", "returns the `green` channel of `@color`") }, { name: "blue", example: "blue(@color);", description: B("less.builtin.blue", "returns the `blue` channel of `@color`") }, { name: "alpha", example: "alpha(@color);", description: B("less.builtin.alpha", "returns the `alpha` channel of `@color`") }, { name: "luma", example: "luma(@color);", description: B("less.builtin.luma", "returns the `luma` value (perceptual brightness) of `@color`") }, { name: "saturate", example: "saturate(@color, 10%);", description: B("less.builtin.saturate", "return `@color` 10% points more saturated") }, { name: "desaturate", example: "desaturate(@color, 10%);", description: B("less.builtin.desaturate", "return `@color` 10% points less saturated") }, { name: "lighten", example: "lighten(@color, 10%);", description: B("less.builtin.lighten", "return `@color` 10% points lighter") }, { name: "darken", example: "darken(@color, 10%);", description: B("less.builtin.darken", "return `@color` 10% points darker") }, { name: "fadein", example: "fadein(@color, 10%);", description: B("less.builtin.fadein", "return `@color` 10% points less transparent") }, { name: "fadeout", example: "fadeout(@color, 10%);", description: B("less.builtin.fadeout", "return `@color` 10% points more transparent") }, { name: "fade", example: "fade(@color, 50%);", description: B("less.builtin.fade", "return `@color` with 50% transparency") }, { name: "spin", example: "spin(@color, 10);", description: B("less.builtin.spin", "return `@color` with a 10 degree larger in hue") }, { name: "mix", example: "mix(@color1, @color2, [@weight: 50%]);", description: B("less.builtin.mix", "return a mix of `@color1` and `@color2`") }, { name: "greyscale", example: "greyscale(@color);", description: B("less.builtin.greyscale", "returns a grey, 100% desaturated color") }, { name: "contrast", example: "contrast(@color1, [@darkcolor: black], [@lightcolor: white], [@threshold: 43%]);", description: B("less.builtin.contrast", "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes") }, { name: "multiply", example: "multiply(@color1, @color2);" }, { name: "screen", example: "screen(@color1, @color2);" }, { name: "overlay", example: "overlay(@color1, @color2);" }, { name: "softlight", example: "softlight(@color1, @color2);" }, { name: "hardlight", example: "hardlight(@color1, @color2);" }, { name: "difference", example: "difference(@color1, @color2);" }, { name: "exclusion", example: "exclusion(@color1, @color2);" }, { name: "average", example: "average(@color1, @color2);" }, { name: "negation", example: "negation(@color1, @color2);" } ], e; }(es); function Up(t, e) { var n = Vp(t); return Bp(n, e); } function Vp(t) { function e(u) { return t.positionAt(u.offset).line; } function n(u) { return t.positionAt(u.offset + u.len).line; } function r() { switch (t.languageId) { case "scss": return new Xl(); case "less": return new Yl(); default: return new Tn(); } } function i(u, f) { var m = e(u), g = n(u); return m !== g ? { startLine: m, endLine: g, kind: f } : null; } var s = [], a = [], o = r(); o.ignoreComment = !1, o.setSource(t.getText()); for (var l = o.scan(), c = null, h = function() { switch (l.type) { case p.CurlyL: case Cr: { a.push({ line: e(l), type: "brace", isStart: !0 }); break; } case p.CurlyR: { if (a.length !== 0) { var u = Qo(a, "brace"); if (!u) break; var f = n(l); u.type === "brace" && (c && n(c) !== f && f--, u.line !== f && s.push({ startLine: u.line, endLine: f, kind: void 0 })); } break; } case p.Comment: { var m = function(k) { return k === "#region" ? { line: e(l), type: "comment", isStart: !0 } : { line: n(l), type: "comment", isStart: !1 }; }, g = function(k) { var w = k.text.match(/^\s*\/\*\s*(#region|#endregion)\b\s*(.*?)\s*\*\//); if (w) return m(w[1]); if (t.languageId === "scss" || t.languageId === "less") { var S = k.text.match(/^\s*\/\/\s*(#region|#endregion)\b\s*(.*?)\s*/); if (S) return m(S[1]); } return null; }, b = g(l); if (b) if (b.isStart) a.push(b); else { var u = Qo(a, "comment"); if (!u) break; u.type === "comment" && u.line !== b.line && s.push({ startLine: u.line, endLine: b.line, kind: "region" }); } else { var y = i(l, "comment"); y && s.push(y); } break; } } c = l, l = o.scan(); }; l.type !== p.EOF; ) h(); return s; } function Qo(t, e) { if (t.length === 0) return null; for (var n = t.length - 1; n >= 0; n--) if (t[n].type === e && t[n].isStart) return t.splice(n, 1)[0]; return null; } function Bp(t, e) { var n = e && e.rangeLimit || Number.MAX_VALUE, r = t.sort(function(a, o) { var l = a.startLine - o.startLine; return l === 0 && (l = a.endLine - o.endLine), l; }), i = [], s = -1; return r.forEach(function(a) { a.startLine < s && s < a.endLine || (i.push(a), s = a.endLine); }), i.length < n ? i : i.slice(0, n); } var Kl; (function() { var t = [ , , function(i) { function s(l) { this.__parent = l, this.__character_count = 0, this.__indent_count = -1, this.__alignment_count = 0, this.__wrap_point_index = 0, this.__wrap_point_character_count = 0, this.__wrap_point_indent_count = -1, this.__wrap_point_alignment_count = 0, this.__items = []; } s.prototype.clone_empty = function() { var l = new s(this.__parent); return l.set_indent(this.__indent_count, this.__alignment_count), l; }, s.prototype.item = function(l) { return l < 0 ? this.__items[this.__items.length + l] : this.__items[l]; }, s.prototype.has_match = function(l) { for (var c = this.__items.length - 1; c >= 0; c--) if (this.__items[c].match(l)) return !0; return !1; }, s.prototype.set_indent = function(l, c) { this.is_empty() && (this.__indent_count = l || 0, this.__alignment_count = c || 0, this.__character_count = this.__parent.get_indent_size(this.__indent_count, this.__alignment_count)); }, s.prototype._set_wrap_point = function() { this.__parent.wrap_line_length && (this.__wrap_point_index = this.__items.length, this.__wrap_point_character_count = this.__character_count, this.__wrap_point_indent_count = this.__parent.next_line.__indent_count, this.__wrap_point_alignment_count = this.__parent.next_line.__alignment_count); }, s.prototype._should_wrap = function() { return this.__wrap_point_index && this.__character_count > this.__parent.wrap_line_length && this.__wrap_point_character_count > this.__parent.next_line.__character_count; }, s.prototype._allow_wrap = function() { if (this._should_wrap()) { this.__parent.add_new_line(); var l = this.__parent.current_line; return l.set_indent(this.__wrap_point_indent_count, this.__wrap_point_alignment_count), l.__items = this.__items.slice(this.__wrap_point_index), this.__items = this.__items.slice(0, this.__wrap_point_index), l.__character_count += this.__character_count - this.__wrap_point_character_count, this.__character_count = this.__wrap_point_character_count, l.__items[0] === " " && (l.__items.splice(0, 1), l.__character_count -= 1), !0; } return !1; }, s.prototype.is_empty = function() { return this.__items.length === 0; }, s.prototype.last = function() { return this.is_empty() ? null : this.__items[this.__items.length - 1]; }, s.prototype.push = function(l) { this.__items.push(l); var c = l.lastIndexOf(` `); c !== -1 ? this.__character_count = l.length - c : this.__character_count += l.length; }, s.prototype.pop = function() { var l = null; return this.is_empty() || (l = this.__items.pop(), this.__character_count -= l.length), l; }, s.prototype._remove_indent = function() { this.__indent_count > 0 && (this.__indent_count -= 1, this.__character_count -= this.__parent.indent_size); }, s.prototype._remove_wrap_indent = function() { this.__wrap_point_indent_count > 0 && (this.__wrap_point_indent_count -= 1); }, s.prototype.trim = function() { for (; this.last() === " "; ) this.__items.pop(), this.__character_count -= 1; }, s.prototype.toString = function() { var l = ""; return this.is_empty() ? this.__parent.indent_empty_lines && (l = this.__parent.get_indent_string(this.__indent_count)) : (l = this.__parent.get_indent_string(this.__indent_count, this.__alignment_count), l += this.__items.join("")), l; }; function a(l, c) { this.__cache = [""], this.__indent_size = l.indent_size, this.__indent_string = l.indent_char, l.indent_with_tabs || (this.__indent_string = new Array(l.indent_size + 1).join(l.indent_char)), c = c || "", l.indent_level > 0 && (c = new Array(l.indent_level + 1).join(this.__indent_string)), this.__base_string = c, this.__base_string_length = c.length; } a.prototype.get_indent_size = function(l, c) { var h = this.__base_string_length; return c = c || 0, l < 0 && (h = 0), h += l * this.__indent_size, h += c, h; }, a.prototype.get_indent_string = function(l, c) { var h = this.__base_string; return c = c || 0, l < 0 && (l = 0, h = ""), c += l * this.__indent_size, this.__ensure_cache(c), h += this.__cache[c], h; }, a.prototype.__ensure_cache = function(l) { for (; l >= this.__cache.length; ) this.__add_column(); }, a.prototype.__add_column = function() { var l = this.__cache.length, c = 0, h = ""; this.__indent_size && l >= this.__indent_size && (c = Math.floor(l / this.__indent_size), l -= c * this.__indent_size, h = new Array(c + 1).join(this.__indent_string)), l && (h += new Array(l + 1).join(" ")), this.__cache.push(h); }; function o(l, c) { this.__indent_cache = new a(l, c), this.raw = !1, this._end_with_newline = l.end_with_newline, this.indent_size = l.indent_size, this.wrap_line_length = l.wrap_line_length, this.indent_empty_lines = l.indent_empty_lines, this.__lines = [], this.previous_line = null, this.current_line = null, this.next_line = new s(this), this.space_before_token = !1, this.non_breaking_space = !1, this.previous_token_wrapped = !1, this.__add_outputline(); } o.prototype.__add_outputline = function() { this.previous_line = this.current_line, this.current_line = this.next_line.clone_empty(), this.__lines.push(this.current_line); }, o.prototype.get_line_number = function() { return this.__lines.length; }, o.prototype.get_indent_string = function(l, c) { return this.__indent_cache.get_indent_string(l, c); }, o.prototype.get_indent_size = function(l, c) { return this.__indent_cache.get_indent_size(l, c); }, o.prototype.is_empty = function() { return !this.previous_line && this.current_line.is_empty(); }, o.prototype.add_new_line = function(l) { return this.is_empty() || !l && this.just_added_newline() ? !1 : (this.raw || this.__add_outputline(), !0); }, o.prototype.get_code = function(l) { this.trim(!0); var c = this.current_line.pop(); c && (c[c.length - 1] === ` ` && (c = c.replace(/\n+$/g, "")), this.current_line.push(c)), this._end_with_newline && this.__add_outputline(); var h = this.__lines.join(` `); return l !== ` ` && (h = h.replace(/[\n]/g, l)), h; }, o.prototype.set_wrap_point = function() { this.current_line._set_wrap_point(); }, o.prototype.set_indent = function(l, c) { return l = l || 0, c = c || 0, this.next_line.set_indent(l, c), this.__lines.length > 1 ? (this.current_line.set_indent(l, c), !0) : (this.current_line.set_indent(), !1); }, o.prototype.add_raw_token = function(l) { for (var c = 0; c < l.newlines; c++) this.__add_outputline(); this.current_line.set_indent(-1), this.current_line.push(l.whitespace_before), this.current_line.push(l.text), this.space_before_token = !1, this.non_breaking_space = !1, this.previous_token_wrapped = !1; }, o.prototype.add_token = function(l) { this.__add_space_before_token(), this.current_line.push(l), this.space_before_token = !1, this.non_breaking_space = !1, this.previous_token_wrapped = this.current_line._allow_wrap(); }, o.prototype.__add_space_before_token = function() { this.space_before_token && !this.just_added_newline() && (this.non_breaking_space || this.set_wrap_point(), this.current_line.push(" ")); }, o.prototype.remove_indent = function(l) { for (var c = this.__lines.length; l < c; ) this.__lines[l]._remove_indent(), l++; this.current_line._remove_wrap_indent(); }, o.prototype.trim = function(l) { for (l = l === void 0 ? !1 : l, this.current_line.trim(); l && this.__lines.length > 1 && this.current_line.is_empty(); ) this.__lines.pop(), this.current_line = this.__lines[this.__lines.length - 1], this.current_line.trim(); this.previous_line = this.__lines.length > 1 ? this.__lines[this.__lines.length - 2] : null; }, o.prototype.just_added_newline = function() { return this.current_line.is_empty(); }, o.prototype.just_added_blankline = function() { return this.is_empty() || this.current_line.is_empty() && this.previous_line.is_empty(); }, o.prototype.ensure_empty_line_above = function(l, c) { for (var h = this.__lines.length - 2; h >= 0; ) { var u = this.__lines[h]; if (u.is_empty()) break; if (u.item(0).indexOf(l) !== 0 && u.item(-1) !== c) { this.__lines.splice(h + 1, 0, new s(this)), this.previous_line = this.__lines[this.__lines.length - 2]; break; } h--; } }, i.exports.Output = o; }, , , , function(i) { function s(l, c) { this.raw_options = a(l, c), this.disabled = this._get_boolean("disabled"), this.eol = this._get_characters("eol", "auto"), this.end_with_newline = this._get_boolean("end_with_newline"), this.indent_size = this._get_number("indent_size", 4), this.indent_char = this._get_characters("indent_char", " "), this.indent_level = this._get_number("indent_level"), this.preserve_newlines = this._get_boolean("preserve_newlines", !0), this.max_preserve_newlines = this._get_number("max_preserve_newlines", 32786), this.preserve_newlines || (this.max_preserve_newlines = 0), this.indent_with_tabs = this._get_boolean("indent_with_tabs", this.indent_char === " "), this.indent_with_tabs && (this.indent_char = " ", this.indent_size === 1 && (this.indent_size = 4)), this.wrap_line_length = this._get_number("wrap_line_length", this._get_number("max_char")), this.indent_empty_lines = this._get_boolean("indent_empty_lines"), this.templating = this._get_selection_list("templating", ["auto", "none", "django", "erb", "handlebars", "php", "smarty"], ["auto"]); } s.prototype._get_array = function(l, c) { var h = this.raw_options[l], u = c || []; return typeof h == "object" ? h !== null && typeof h.concat == "function" && (u = h.concat()) : typeof h == "string" && (u = h.split(/[^a-zA-Z0-9_\/\-]+/)), u; }, s.prototype._get_boolean = function(l, c) { var h = this.raw_options[l], u = h === void 0 ? !!c : !!h; return u; }, s.prototype._get_characters = function(l, c) { var h = this.raw_options[l], u = c || ""; return typeof h == "string" && (u = h.replace(/\\r/, "\r").replace(/\\n/, ` `).replace(/\\t/, " ")), u; }, s.prototype._get_number = function(l, c) { var h = this.raw_options[l]; c = parseInt(c, 10), isNaN(c) && (c = 0); var u = parseInt(h, 10); return isNaN(u) && (u = c), u; }, s.prototype._get_selection = function(l, c, h) { var u = this._get_selection_list(l, c, h); if (u.length !== 1) throw new Error("Invalid Option Value: The option '" + l + `' can only be one of the following values: ` + c + ` You passed in: '` + this.raw_options[l] + "'"); return u[0]; }, s.prototype._get_selection_list = function(l, c, h) { if (!c || c.length === 0) throw new Error("Selection list cannot be empty."); if (h = h || [c[0]], !this._is_valid_selection(h, c)) throw new Error("Invalid Default Value!"); var u = this._get_array(l, h); if (!this._is_valid_selection(u, c)) throw new Error("Invalid Option Value: The option '" + l + `' can contain only the following values: ` + c + ` You passed in: '` + this.raw_options[l] + "'"); return u; }, s.prototype._is_valid_selection = function(l, c) { return l.length && c.length && !l.some(function(h) { return c.indexOf(h) === -1; }); }; function a(l, c) { var h = {}; l = o(l); var u; for (u in l) u !== c && (h[u] = l[u]); if (c && l[c]) for (u in l[c]) h[u] = l[c][u]; return h; } function o(l) { var c = {}, h; for (h in l) { var u = h.replace(/-/g, "_"); c[u] = l[h]; } return c; } i.exports.Options = s, i.exports.normalizeOpts = o, i.exports.mergeOpts = a; }, , function(i) { var s = RegExp.prototype.hasOwnProperty("sticky"); function a(o) { this.__input = o || "", this.__input_length = this.__input.length, this.__position = 0; } a.prototype.restart = function() { this.__position = 0; }, a.prototype.back = function() { this.__position > 0 && (this.__position -= 1); }, a.prototype.hasNext = function() { return this.__position < this.__input_length; }, a.prototype.next = function() { var o = null; return this.hasNext() && (o = this.__input.charAt(this.__position), this.__position += 1), o; }, a.prototype.peek = function(o) { var l = null; return o = o || 0, o += this.__position, o >= 0 && o < this.__input_length && (l = this.__input.charAt(o)), l; }, a.prototype.__match = function(o, l) { o.lastIndex = l; var c = o.exec(this.__input); return c && !(s && o.sticky) && c.index !== l && (c = null), c; }, a.prototype.test = function(o, l) { return l = l || 0, l += this.__position, l >= 0 && l < this.__input_length ? !!this.__match(o, l) : !1; }, a.prototype.testChar = function(o, l) { var c = this.peek(l); return o.lastIndex = 0, c !== null && o.test(c); }, a.prototype.match = function(o) { var l = this.__match(o, this.__position); return l ? this.__position += l[0].length : l = null, l; }, a.prototype.read = function(o, l, c) { var h = "", u; return o && (u = this.match(o), u && (h += u[0])), l && (u || !o) && (h += this.readUntil(l, c)), h; }, a.prototype.readUntil = function(o, l) { var c = "", h = this.__position; o.lastIndex = this.__position; var u = o.exec(this.__input); return u ? (h = u.index, l && (h += u[0].length)) : h = this.__input_length, c = this.__input.substring(this.__position, h), this.__position = h, c; }, a.prototype.readUntilAfter = function(o) { return this.readUntil(o, !0); }, a.prototype.get_regexp = function(o, l) { var c = null, h = "g"; return l && s && (h = "y"), typeof o == "string" && o !== "" ? c = new RegExp(o, h) : o && (c = new RegExp(o.source, h)), c; }, a.prototype.get_literal_regexp = function(o) { return RegExp(o.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&")); }, a.prototype.peekUntilAfter = function(o) { var l = this.__position, c = this.readUntilAfter(o); return this.__position = l, c; }, a.prototype.lookBack = function(o) { var l = this.__position - 1; return l >= o.length && this.__input.substring(l - o.length, l).toLowerCase() === o; }, i.exports.InputScanner = a; }, , , , , function(i) { function s(a, o) { a = typeof a == "string" ? a : a.source, o = typeof o == "string" ? o : o.source, this.__directives_block_pattern = new RegExp(a + / beautify( \w+[:]\w+)+ /.source + o, "g"), this.__directive_pattern = / (\w+)[:](\w+)/g, this.__directives_end_ignore_pattern = new RegExp(a + /\sbeautify\signore:end\s/.source + o, "g"); } s.prototype.get_directives = function(a) { if (!a.match(this.__directives_block_pattern)) return null; var o = {}; this.__directive_pattern.lastIndex = 0; for (var l = this.__directive_pattern.exec(a); l; ) o[l[1]] = l[2], l = this.__directive_pattern.exec(a); return o; }, s.prototype.readIgnored = function(a) { return a.readUntilAfter(this.__directives_end_ignore_pattern); }, i.exports.Directives = s; }, , function(i, s, a) { var o = a(16).Beautifier, l = a(17).Options; function c(h, u) { var f = new o(h, u); return f.beautify(); } i.exports = c, i.exports.defaultOptions = function() { return new l(); }; }, function(i, s, a) { var o = a(17).Options, l = a(2).Output, c = a(8).InputScanner, h = a(13).Directives, u = new h(/\/\*/, /\*\//), f = /\r\n|[\r\n]/, m = /\r\n|[\r\n]/g, g = /\s/, b = /(?:\s|\n)+/g, y = /\/\*(?:[\s\S]*?)((?:\*\/)|$)/g, k = /\/\/(?:[^\n\r\u2028\u2029]*)/g; function w(S, F) { this._source_text = S || "", this._options = new o(F), this._ch = null, this._input = null, this.NESTED_AT_RULE = { "@page": !0, "@font-face": !0, "@keyframes": !0, "@media": !0, "@supports": !0, "@document": !0 }, this.CONDITIONAL_GROUP_RULE = { "@media": !0, "@supports": !0, "@document": !0 }; } w.prototype.eatString = function(S) { var F = ""; for (this._ch = this._input.next(); this._ch; ) { if (F += this._ch, this._ch === "\\") F += this._input.next(); else if (S.indexOf(this._ch) !== -1 || this._ch === ` `) break; this._ch = this._input.next(); } return F; }, w.prototype.eatWhitespace = function(S) { for (var F = g.test(this._input.peek()), E = 0; g.test(this._input.peek()); ) this._ch = this._input.next(), S && this._ch === ` ` && (E === 0 || E < this._options.max_preserve_newlines) && (E++, this._output.add_new_line(!0)); return F; }, w.prototype.foundNestedPseudoClass = function() { for (var S = 0, F = 1, E = this._input.peek(F); E; ) { if (E === "{") return !0; if (E === "(") S += 1; else if (E === ")") { if (S === 0) return !1; S -= 1; } else if (E === ";" || E === "}") return !1; F++, E = this._input.peek(F); } return !1; }, w.prototype.print_string = function(S) { this._output.set_indent(this._indentLevel), this._output.non_breaking_space = !0, this._output.add_token(S); }, w.prototype.preserveSingleSpace = function(S) { S && (this._output.space_before_token = !0); }, w.prototype.indent = function() { this._indentLevel++; }, w.prototype.outdent = function() { this._indentLevel > 0 && this._indentLevel--; }, w.prototype.beautify = function() { if (this._options.disabled) return this._source_text; var S = this._source_text, F = this._options.eol; F === "auto" && (F = ` `, S && f.test(S || "") && (F = S.match(f)[0])), S = S.replace(m, ` `); var E = S.match(/^[\t ]*/)[0]; this._output = new l(this._options, E), this._input = new c(S), this._indentLevel = 0, this._nestedLevel = 0, this._ch = null; for (var P = 0, T = !1, W = !1, H = !1, re = !1, X = !1, D = this._ch, N, L, I; N = this._input.read(b), L = N !== "", I = D, this._ch = this._input.next(), this._ch === "\\" && this._input.hasNext() && (this._ch += this._input.next()), D = this._ch, this._ch; ) if (this._ch === "/" && this._input.peek() === "*") { this._output.add_new_line(), this._input.back(); var O = this._input.read(y), _ = u.get_directives(O); _ && _.ignore === "start" && (O += u.readIgnored(this._input)), this.print_string(O), this.eatWhitespace(!0), this._output.add_new_line(); } else if (this._ch === "/" && this._input.peek() === "/") this._output.space_before_token = !0, this._input.back(), this.print_string(this._input.read(k)), this.eatWhitespace(!0); else if (this._ch === "@") if (this.preserveSingleSpace(L), this._input.peek() === "{") this.print_string(this._ch + this.eatString("}")); else { this.print_string(this._ch); var x = this._input.peekUntilAfter(/[: ,;{}()[\]\/='"]/g); x.match(/[ :]$/) && (x = this.eatString(": ").replace(/\s$/, ""), this.print_string(x), this._output.space_before_token = !0), x = x.replace(/\s$/, ""), x === "extend" ? re = !0 : x === "import" && (X = !0), x in this.NESTED_AT_RULE ? (this._nestedLevel += 1, x in this.CONDITIONAL_GROUP_RULE && (H = !0)) : !T && P === 0 && x.indexOf(":") !== -1 && (W = !0, this.indent()); } else this._ch === "#" && this._input.peek() === "{" ? (this.preserveSingleSpace(L), this.print_string(this._ch + this.eatString("}"))) : this._ch === "{" ? (W && (W = !1, this.outdent()), H ? (H = !1, T = this._indentLevel >= this._nestedLevel) : T = this._indentLevel >= this._nestedLevel - 1, this._options.newline_between_rules && T && this._output.previous_line && this._output.previous_line.item(-1) !== "{" && this._output.ensure_empty_line_above("/", ","), this._output.space_before_token = !0, this._options.brace_style === "expand" ? (this._output.add_new_line(), this.print_string(this._ch), this.indent(), this._output.set_indent(this._indentLevel)) : (this.indent(), this.print_string(this._ch)), this.eatWhitespace(!0), this._output.add_new_line()) : this._ch === "}" ? (this.outdent(), this._output.add_new_line(), I === "{" && this._output.trim(!0), X = !1, re = !1, W && (this.outdent(), W = !1), this.print_string(this._ch), T = !1, this._nestedLevel && this._nestedLevel--, this.eatWhitespace(!0), this._output.add_new_line(), this._options.newline_between_rules && !this._output.just_added_blankline() && this._input.peek() !== "}" && this._output.add_new_line(!0)) : this._ch === ":" ? (T || H) && !(this._input.lookBack("&") || this.foundNestedPseudoClass()) && !this._input.lookBack("(") && !re && P === 0 ? (this.print_string(":"), W || (W = !0, this._output.space_before_token = !0, this.eatWhitespace(!0), this.indent())) : (this._input.lookBack(" ") && (this._output.space_before_token = !0), this._input.peek() === ":" ? (this._ch = this._input.next(), this.print_string("::")) : this.print_string(":")) : this._ch === '"' || this._ch === "'" ? (this.preserveSingleSpace(L), this.print_string(this._ch + this.eatString(this._ch)), this.eatWhitespace(!0)) : this._ch === ";" ? P === 0 ? (W && (this.outdent(), W = !1), re = !1, X = !1, this.print_string(this._ch), this.eatWhitespace(!0), this._input.peek() !== "/" && this._output.add_new_line()) : (this.print_string(this._ch), this.eatWhitespace(!0), this._output.space_before_token = !0) : this._ch === "(" ? this._input.lookBack("url") ? (this.print_string(this._ch), this.eatWhitespace(), P++, this.indent(), this._ch = this._input.next(), this._ch === ")" || this._ch === '"' || this._ch === "'" ? this._input.back() : this._ch && (this.print_string(this._ch + this.eatString(")")), P && (P--, this.outdent()))) : (this.preserveSingleSpace(L), this.print_string(this._ch), this.eatWhitespace(), P++, this.indent()) : this._ch === ")" ? (P && (P--, this.outdent()), this.print_string(this._ch)) : this._ch === "," ? (this.print_string(this._ch), this.eatWhitespace(!0), this._options.selector_separator_newline && !W && P === 0 && !X && !re ? this._output.add_new_line() : this._output.space_before_token = !0) : (this._ch === ">" || this._ch === "+" || this._ch === "~") && !W && P === 0 ? this._options.space_around_combinator ? (this._output.space_before_token = !0, this.print_string(this._ch), this._output.space_before_token = !0) : (this.print_string(this._ch), this.eatWhitespace(), this._ch && g.test(this._ch) && (this._ch = "")) : this._ch === "]" ? this.print_string(this._ch) : this._ch === "[" ? (this.preserveSingleSpace(L), this.print_string(this._ch)) : this._ch === "=" ? (this.eatWhitespace(), this.print_string("="), g.test(this._ch) && (this._ch = "")) : this._ch === "!" && !this._input.lookBack("\\") ? (this.print_string(" "), this.print_string(this._ch)) : (this.preserveSingleSpace(L), this.print_string(this._ch)); var A = this._output.get_code(F); return A; }, i.exports.Beautifier = w; }, function(i, s, a) { var o = a(6).Options; function l(c) { o.call(this, c, "css"), this.selector_separator_newline = this._get_boolean("selector_separator_newline", !0), this.newline_between_rules = this._get_boolean("newline_between_rules", !0); var h = this._get_boolean("space_around_selector_separator"); this.space_around_combinator = this._get_boolean("space_around_combinator") || h; var u = this._get_selection_list("brace_style", ["collapse", "expand", "end-expand", "none", "preserve-inline"]); this.brace_style = "collapse"; for (var f = 0; f < u.length; f++) u[f] !== "expand" ? this.brace_style = "collapse" : this.brace_style = u[f]; } l.prototype = new o(), i.exports.Options = l; } ], e = {}; function n(i) { var s = e[i]; if (s !== void 0) return s.exports; var a = e[i] = { exports: {} }; return t[i](a, a.exports, n), a.exports; } var r = n(15); Kl = r; })(); var qp = Kl; function jp(t, e, n) { var r = t.getText(), i = !0, s = 0, a = !1, o = n.tabSize || 4; if (e) { for (var l = t.offsetAt(e.start), c = l; c > 0 && tl(r, c - 1); ) c--; c === 0 || el(r, c - 1) ? l = c : c < l && (l = c + 1); for (var h = t.offsetAt(e.end), u = h; u < r.length && tl(r, u); ) u++; if ((u === r.length || el(r, u)) && (h = u), e = ie.create(t.positionAt(l), t.positionAt(h)), a = Gp(r, l), i = h === r.length, r = r.substring(l, h), l !== 0) { var f = t.offsetAt(Ee.create(e.start.line, 0)); s = Jp(t.getText(), f, n); } a && (r = `{ `.concat(Zo(r))); } else e = ie.create(Ee.create(0, 0), t.positionAt(r.length)); var m = { indent_size: o, indent_char: n.insertSpaces ? " " : " ", end_with_newline: i && st(n, "insertFinalNewline", !1), selector_separator_newline: st(n, "newlineBetweenSelectors", !0), newline_between_rules: st(n, "newlineBetweenRules", !0), space_around_selector_separator: st(n, "spaceAroundSelectorSeparator", !1), brace_style: st(n, "braceStyle", "collapse"), indent_empty_lines: st(n, "indentEmptyLines", !1), max_preserve_newlines: st(n, "maxPreserveNewLines", void 0), preserve_newlines: st(n, "preserveNewLines", !0), wrap_line_length: st(n, "wrapLineLength", void 0), eol: ` ` }, g = qp(r, m); if (a && (g = Zo(g.substring(2))), s > 0) { var b = n.insertSpaces ? Va(" ", o * s) : Va(" ", s); g = g.split(` `).join(` ` + b), e.start.character === 0 && (g = b + g); } return [{ range: e, newText: g }]; } function Zo(t) { return t.replace(/^\s+/, ""); } var $p = "{".charCodeAt(0), Hp = "}".charCodeAt(0); function Gp(t, e) { for (; e >= 0; ) { var n = t.charCodeAt(e); if (n === $p) return !0; if (n === Hp) return !1; e--; } return !1; } function st(t, e, n) { if (t && t.hasOwnProperty(e)) { var r = t[e]; if (r !== null) return r; } return n; } function Jp(t, e, n) { for (var r = e, i = 0, s = n.tabSize || 4; r < t.length; ) { var a = t.charAt(r); if (a === " ") i++; else if (a === " ") i += s; else break; r++; } return Math.floor(i / s); } function el(t, e) { return `\r `.indexOf(t.charAt(e)) !== -1; } function tl(t, e) { return " ".indexOf(t.charAt(e)) !== -1; } var Xp = { version: 1.1, properties: [ { name: "additive-symbols", browsers: [ "FF33" ], syntax: "[ && ]#", relevance: 50, description: "@counter-style descriptor. Specifies the symbols used by the marker-construction algorithm specified by the system descriptor. Needs to be specified if the counter system is 'additive'.", restrictions: [ "integer", "string", "image", "identifier" ] }, { name: "align-content", values: [ { name: "center", description: "Lines are packed toward the center of the flex container." }, { name: "flex-end", description: "Lines are packed toward the end of the flex container." }, { name: "flex-start", description: "Lines are packed toward the start of the flex container." }, { name: "space-around", description: "Lines are evenly distributed in the flex container, with half-size spaces on either end." }, { name: "space-between", description: "Lines are evenly distributed in the flex container." }, { name: "stretch", description: "Lines stretch to take up the remaining space." } ], syntax: "normal | | | ? ", relevance: 62, description: "Aligns a flex container’s lines within the flex container when there is extra space in the cross-axis, similar to how 'justify-content' aligns individual items within the main-axis.", restrictions: [ "enum" ] }, { name: "align-items", values: [ { name: "baseline", description: "If the flex item’s inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment." }, { name: "center", description: "The flex item’s margin box is centered in the cross axis within the line." }, { name: "flex-end", description: "The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line." }, { name: "flex-start", description: "The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line." }, { name: "stretch", description: "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched." } ], syntax: "normal | stretch | | [ ? ]", relevance: 85, description: "Aligns flex items along the cross axis of the current line of the flex container.", restrictions: [ "enum" ] }, { name: "justify-items", values: [ { name: "auto" }, { name: "normal" }, { name: "end" }, { name: "start" }, { name: "flex-end", description: '"Flex items are packed toward the end of the line."' }, { name: "flex-start", description: '"Flex items are packed toward the start of the line."' }, { name: "self-end", description: "The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis." }, { name: "self-start", description: "The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.." }, { name: "center", description: "The items are packed flush to each other toward the center of the of the alignment container." }, { name: "left" }, { name: "right" }, { name: "baseline" }, { name: "first baseline" }, { name: "last baseline" }, { name: "stretch", description: "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched." }, { name: "save" }, { name: "unsave" }, { name: "legacy" } ], syntax: "normal | stretch | | ? [ | left | right ] | legacy | legacy && [ left | right | center ]", relevance: 53, description: "Defines the default justify-self for all items of the box, giving them the default way of justifying each box along the appropriate axis", restrictions: [ "enum" ] }, { name: "justify-self", values: [ { name: "auto" }, { name: "normal" }, { name: "end" }, { name: "start" }, { name: "flex-end", description: '"Flex items are packed toward the end of the line."' }, { name: "flex-start", description: '"Flex items are packed toward the start of the line."' }, { name: "self-end", description: "The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis." }, { name: "self-start", description: "The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.." }, { name: "center", description: "The items are packed flush to each other toward the center of the of the alignment container." }, { name: "left" }, { name: "right" }, { name: "baseline" }, { name: "first baseline" }, { name: "last baseline" }, { name: "stretch", description: "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched." }, { name: "save" }, { name: "unsave" } ], syntax: "auto | normal | stretch | | ? [ | left | right ]", relevance: 53, description: "Defines the way of justifying a box inside its container along the appropriate axis.", restrictions: [ "enum" ] }, { name: "align-self", values: [ { name: "auto", description: "Computes to the value of 'align-items' on the element’s parent, or 'stretch' if the element has no parent. On absolutely positioned elements, it computes to itself." }, { name: "baseline", description: "If the flex item’s inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment." }, { name: "center", description: "The flex item’s margin box is centered in the cross axis within the line." }, { name: "flex-end", description: "The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line." }, { name: "flex-start", description: "The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line." }, { name: "stretch", description: "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched." } ], syntax: "auto | normal | stretch | | ? ", relevance: 72, description: "Allows the default alignment along the cross axis to be overridden for individual flex items.", restrictions: [ "enum" ] }, { name: "all", browsers: [ "E79", "FF27", "S9.1", "C37", "O24" ], values: [], syntax: "initial | inherit | unset | revert", relevance: 53, references: [ { name: "MDN Reference", url: "https://developer.mozilla.org/docs/Web/CSS/all" } ], description: "Shorthand that resets all properties except 'direction' and 'unicode-bidi'.", restrictions: [ "enum" ] }, { name: "alt", browsers: [ "S9" ], values: [], relevance: 50, references: [ { name: "MDN Reference", url: "https://developer.mozilla.org/docs/Web/CSS/alt" } ], description: "Provides alternative text for assistive technology to replace the generated content of a ::before or ::after element.", restrictions: [ "string", "enum" ] }, { name: "animation", values: [ { name: "alternate", description: "The animation cycle iterations that are odd counts are played in the normal direction, and the animation cycle iterations that are even counts are played in a reverse direction." }, { name: "alternate-reverse", description: "The animation cycle iterations that are odd counts are played in the reverse direction, and the animation cycle iterations that are even counts are played in a normal direction." }, { name: "backwards", description: "The beginning property value (as defined in the first @keyframes at-rule) is applied before the animation is displayed, during the period defined by 'animation-delay'." }, { name: "both", description: "Both forwards and backwards fill modes are applied." }, { name: "forwards", description: "The final property value (as defined in the last @keyframes at-rule) is maintained after the animation completes." }, { name: "infinite", description: "Causes the animation to repeat forever." }, { name: "none", description: "No animation is performed" }, { name: "normal", description: "Normal playback." }, { name: "reverse", description: "All iterations of the animation are played in the reverse direction from the way they were specified." } ], syntax: "#", relevance: 82, references: [ { name: "MDN Reference", url: "https://developer.mozilla.org/docs/Web/CSS/animation" } ], description: "Shorthand property combines six of the animation properties into a single property.", restrictions: [ "time", "timing-function", "enum", "identifier", "number" ] }, { name: "animation-delay", syntax: "