Skip to content

Commit

Permalink
Deploying to gh-pages from @ f14e4fb 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mkslanc committed Apr 15, 2024
1 parent fc3bffc commit e894f4a
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 244 deletions.
74 changes: 37 additions & 37 deletions build/javascript-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -13492,7 +13492,7 @@ var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __require = /* @__PURE__ */ ((x)=> true ? __webpack_require__(112) : 0)(function(x) {
if (true) return __webpack_require__(112).apply(this, arguments);
throw new Error('Dynamic require of "' + x + '" is not supported');
throw Error('Dynamic require of "' + x + '" is not supported');
});
var __commonJS = (cb, mod)=>function __require2() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = {
Expand Down Expand Up @@ -19746,7 +19746,7 @@ var require_eslint_scope = __commonJS({
var READ = 1;
var WRITE = 2;
var RW = READ | WRITE;
var Reference = class {
var Reference = class _Reference {
/**
* Whether the reference is static.
* @function Reference#isStatic
Expand All @@ -19759,35 +19759,35 @@ var require_eslint_scope = __commonJS({
* @function Reference#isWrite
* @returns {boolean} write
*/ isWrite() {
return !!(this.flag & Reference.WRITE);
return !!(this.flag & _Reference.WRITE);
}
/**
* Whether the reference is readable.
* @function Reference#isRead
* @returns {boolean} read
*/ isRead() {
return !!(this.flag & Reference.READ);
return !!(this.flag & _Reference.READ);
}
/**
* Whether the reference is read-only.
* @function Reference#isReadOnly
* @returns {boolean} read only
*/ isReadOnly() {
return this.flag === Reference.READ;
return this.flag === _Reference.READ;
}
/**
* Whether the reference is write-only.
* @function Reference#isWriteOnly
* @returns {boolean} write only
*/ isWriteOnly() {
return this.flag === Reference.WRITE;
return this.flag === _Reference.WRITE;
}
/**
* Whether the reference is read-write.
* @function Reference#isReadWrite
* @returns {boolean} read write
*/ isReadWrite() {
return this.flag === Reference.RW;
return this.flag === _Reference.RW;
}
constructor(ident, scope, flag, writeExpr, maybeImplicitGlobal, partial, init){
this.identifier = ident;
Expand Down Expand Up @@ -28740,7 +28740,7 @@ var require_lodash = __commonJS({
var nativeNow = Date.now;
var Map2 = getNative(root, "Map");
var nativeCreate = getNative(Object, "create");
var baseCreate = function() {
var baseCreate = /* @__PURE__ */ function() {
function object() {}
return function(proto) {
if (!isObject(proto)) {
Expand Down Expand Up @@ -29267,7 +29267,7 @@ var require_lodash = __commonJS({
function eq(value, other) {
return value === other || value !== value && other !== other;
}
var isArguments = baseIsArguments(function() {
var isArguments = baseIsArguments(/* @__PURE__ */ function() {
return arguments;
}()) ? baseIsArguments : function(value) {
return isObjectLike(value) && hasOwnProperty.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
Expand Down Expand Up @@ -29615,7 +29615,7 @@ var require_uri_all = __commonJS({
}
var URI_PROTOCOL = buildExps(false);
var IRI_PROTOCOL = buildExps(true);
var slicedToArray = function() {
var slicedToArray = /* @__PURE__ */ function() {
function sliceIterator(arr, i) {
var _arr = [];
var _n = true;
Expand Down Expand Up @@ -31161,7 +31161,7 @@ var require_fast_json_stable_stringify = __commonJS({
cmp: opts
};
var cycles = typeof opts.cycles === "boolean" ? opts.cycles : false;
var cmp = opts.cmp && function(f) {
var cmp = opts.cmp && /* @__PURE__ */ function(f) {
return function(node) {
return function(a, b) {
var aobj = {
Expand Down Expand Up @@ -38989,7 +38989,7 @@ var require_browser = __commonJS({
exports.load = load;
exports.useColors = useColors;
exports.storage = localstorage();
exports.destroy = (()=>{
exports.destroy = /* @__PURE__ */ (()=>{
let warned = false;
return ()=>{
if (!warned) {
Expand Down Expand Up @@ -39163,7 +39163,7 @@ var require_traverser = __commonJS({
}
return keys;
}
var Traverser = class {
var Traverser = class _Traverser {
/**
* Gives current node.
* @returns {ASTNode} The current node.
Expand Down Expand Up @@ -39258,7 +39258,7 @@ var require_traverser = __commonJS({
* @param {Function} [options.leave=noop] The callback function which is called on leaving each node.
* @returns {void}
*/ static traverse(node, options) {
new Traverser().traverse(node, options);
new _Traverser().traverse(node, options);
}
/**
* The default visitor keys.
Expand Down Expand Up @@ -42248,7 +42248,7 @@ var require_code_path_segment = __commonJS({
function isReachable(segment) {
return segment.reachable;
}
var CodePathSegment = class {
var CodePathSegment = class _CodePathSegment {
/**
* Checks a given previous segment is coming from the end of a loop.
* @param {CodePathSegment} segment A previous segment to check.
Expand All @@ -42261,24 +42261,24 @@ var require_code_path_segment = __commonJS({
* @param {string} id An identifier.
* @returns {CodePathSegment} The created segment.
*/ static newRoot(id) {
return new CodePathSegment(id, [], true);
return new _CodePathSegment(id, [], true);
}
/**
* Creates a segment that follows given segments.
* @param {string} id An identifier.
* @param {CodePathSegment[]} allPrevSegments An array of the previous segments.
* @returns {CodePathSegment} The created segment.
*/ static newNext(id, allPrevSegments) {
return new CodePathSegment(id, CodePathSegment.flattenUnusedSegments(allPrevSegments), allPrevSegments.some(isReachable));
return new _CodePathSegment(id, _CodePathSegment.flattenUnusedSegments(allPrevSegments), allPrevSegments.some(isReachable));
}
/**
* Creates an unreachable segment that follows given segments.
* @param {string} id An identifier.
* @param {CodePathSegment[]} allPrevSegments An array of the previous segments.
* @returns {CodePathSegment} The created segment.
*/ static newUnreachable(id, allPrevSegments) {
const segment = new CodePathSegment(id, CodePathSegment.flattenUnusedSegments(allPrevSegments), false);
CodePathSegment.markUsed(segment);
const segment = new _CodePathSegment(id, _CodePathSegment.flattenUnusedSegments(allPrevSegments), false);
_CodePathSegment.markUsed(segment);
return segment;
}
/**
Expand All @@ -42289,7 +42289,7 @@ var require_code_path_segment = __commonJS({
* @param {CodePathSegment[]} allPrevSegments An array of the previous segments.
* @returns {CodePathSegment} The created segment.
*/ static newDisconnected(id, allPrevSegments) {
return new CodePathSegment(id, [], allPrevSegments.some(isReachable));
return new _CodePathSegment(id, [], allPrevSegments.some(isReachable));
}
/**
* Makes a given segment being used.
Expand Down Expand Up @@ -42413,7 +42413,7 @@ var require_fork_context = __commonJS({
}
return currentSegments;
}
var ForkContext = class {
var ForkContext = class _ForkContext {
/**
* The head segments.
* @type {CodePathSegment[]}
Expand Down Expand Up @@ -42501,7 +42501,7 @@ var require_fork_context = __commonJS({
* @param {IdGenerator} idGenerator An identifier generator for segments.
* @returns {ForkContext} New fork context.
*/ static newRoot(idGenerator) {
const context = new ForkContext(idGenerator, null, 1);
const context = new _ForkContext(idGenerator, null, 1);
context.add([
CodePathSegment.newRoot(idGenerator.next())
]);
Expand All @@ -42513,7 +42513,7 @@ var require_fork_context = __commonJS({
* @param {boolean} forkLeavingPath A flag which shows inside of `finally` block.
* @returns {ForkContext} New fork context.
*/ static newEmpty(parentContext, forkLeavingPath) {
return new ForkContext(parentContext.idGenerator, parentContext, (forkLeavingPath ? 2 : 1) * parentContext.count);
return new _ForkContext(parentContext.idGenerator, parentContext, (forkLeavingPath ? 2 : 1) * parentContext.count);
}
/**
* @param {IdGenerator} idGenerator An identifier generator for segments.
Expand Down Expand Up @@ -44408,7 +44408,7 @@ var require_Func = __commonJS({
return f(y, x);
});
fix = function(f) {
return function(g) {
return /* @__PURE__ */ function(g) {
return function() {
return f(g(g)).apply(null, arguments);
};
Expand Down Expand Up @@ -48846,7 +48846,7 @@ var require_lazy_loading_rule_map = __commonJS({
"../../node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js" (exports, module) {
"use strict";
var debug = require_browser()("eslint:rules");
var LazyLoadingRuleMap = class extends Map {
var LazyLoadingRuleMap = class _LazyLoadingRuleMap extends Map {
/**
* Get a rule.
* Each rule will be loaded on the first access.
Expand Down Expand Up @@ -48903,7 +48903,7 @@ var require_lazy_loading_rule_map = __commonJS({
}
];
}) : loaders);
Object.defineProperty(LazyLoadingRuleMap.prototype, "set", {
Object.defineProperty(_LazyLoadingRuleMap.prototype, "set", {
configurable: true,
value: void 0
});
Expand Down Expand Up @@ -53730,7 +53730,7 @@ var require_Graphemer = __commonJS({
var boundaries_1 = require_boundaries();
var GraphemerHelper_1 = __importDefault(require_GraphemerHelper());
var GraphemerIterator_1 = __importDefault(require_GraphemerIterator());
var Graphemer = class {
var Graphemer = class _Graphemer {
/**
* Returns the next grapheme break in the string after the given index
* @param string {string}
Expand All @@ -53747,17 +53747,17 @@ var require_Graphemer = __commonJS({
return string.length;
}
const prevCP = GraphemerHelper_1.default.codePointAt(string, index);
const prev = Graphemer.getGraphemeBreakProperty(prevCP);
const prevEmoji = Graphemer.getEmojiProperty(prevCP);
const prev = _Graphemer.getGraphemeBreakProperty(prevCP);
const prevEmoji = _Graphemer.getEmojiProperty(prevCP);
const mid = [];
const midEmoji = [];
for(let i = index + 1; i < string.length; i++){
if (GraphemerHelper_1.default.isSurrogate(string, i - 1)) {
continue;
}
const nextCP = GraphemerHelper_1.default.codePointAt(string, i);
const next = Graphemer.getGraphemeBreakProperty(nextCP);
const nextEmoji = Graphemer.getEmojiProperty(nextCP);
const next = _Graphemer.getGraphemeBreakProperty(nextCP);
const nextEmoji = _Graphemer.getEmojiProperty(nextCP);
if (GraphemerHelper_1.default.shouldBreak(prev, mid, next, prevEmoji, midEmoji, nextEmoji)) {
return i;
}
Expand All @@ -53774,7 +53774,7 @@ var require_Graphemer = __commonJS({
const res = [];
let index = 0;
let brk;
while((brk = Graphemer.nextBreak(str, index)) < str.length){
while((brk = _Graphemer.nextBreak(str, index)) < str.length){
res.push(str.slice(index, brk));
index = brk;
}
Expand All @@ -53788,7 +53788,7 @@ var require_Graphemer = __commonJS({
* @param str {string}
* @returns {GraphemerIterator}
*/ iterateGraphemes(str) {
return new GraphemerIterator_1.default(str, Graphemer.nextBreak);
return new GraphemerIterator_1.default(str, _Graphemer.nextBreak);
}
/**
* Returns the number of grapheme clusters in the given string
Expand All @@ -53798,7 +53798,7 @@ var require_Graphemer = __commonJS({
let count = 0;
let index = 0;
let brk;
while((brk = Graphemer.nextBreak(str, index)) < str.length){
while((brk = _Graphemer.nextBreak(str, index)) < str.length){
index = brk;
count++;
}
Expand Down Expand Up @@ -98144,7 +98144,7 @@ var require_doctrine = __commonJS({
function sliceSource(source, index, last) {
return source.slice(index, last);
}
hasOwnProperty = function() {
hasOwnProperty = /* @__PURE__ */ function() {
var func = Object.prototype.hasOwnProperty;
return function hasOwnProperty2(obj, name) {
return func.call(obj, name);
Expand Down Expand Up @@ -101574,7 +101574,7 @@ var require_object_schema = __commonJS({
throw new TypeError(`Definition for key "${name}" must have a validate() method.`);
}
}
var ObjectSchema = class {
var ObjectSchema = class _ObjectSchema {
/**
* Determines if a strategy has been registered for the given object key.
* @param {string} key The object key to find a strategy for.
Expand Down Expand Up @@ -101654,7 +101654,7 @@ var require_object_schema = __commonJS({
for (const key of Object.keys(definitions)){
validateDefinition(key, definitions[key]);
if (typeof definitions[key].schema === "object") {
const schema = new ObjectSchema(definitions[key].schema);
const schema = new _ObjectSchema(definitions[key].schema);
definitions[key] = {
...definitions[key],
merge (first = {}, second = {}) {
Expand Down
Loading

0 comments on commit e894f4a

Please sign in to comment.