solid-ui 2.4.19-abb71d30 → 2.4.19-alpha-2ef4a34d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +193 -178
- package/dist/main.js.map +1 -1
- package/lib/versionInfo.js +3 -3
- package/lib/versionInfo.js.map +1 -1
- package/lib/widgets/dragAndDrop.js +1 -1
- package/lib/widgets/dragAndDrop.js.map +1 -1
- package/package.json +16 -16
package/dist/main.js
CHANGED
|
@@ -15167,10 +15167,10 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
15167
15167
|
}));
|
|
15168
15168
|
exports.versionInfo = void 0;
|
|
15169
15169
|
var versionInfo = {
|
|
15170
|
-
buildTime: '2022-03-
|
|
15171
|
-
commit: '
|
|
15170
|
+
buildTime: '2022-03-29T14:27:17Z',
|
|
15171
|
+
commit: '2ef4a34d7dd6ad0997dbe4a14b54c8b397c4d755',
|
|
15172
15172
|
npmInfo: {
|
|
15173
|
-
'solid-ui': '2.4.19',
|
|
15173
|
+
'solid-ui': '2.4.19-alpha',
|
|
15174
15174
|
npm: '6.14.16',
|
|
15175
15175
|
ares: '1.18.1',
|
|
15176
15176
|
brotli: '1.0.9',
|
|
@@ -16987,7 +16987,7 @@ function uploadFiles(fetcher, files, fileBase, imageBase, successHandler) {
|
|
|
16987
16987
|
} else {
|
|
16988
16988
|
var extension = mime.extension(theFile.type); // Note not simple: eg .mp3 => audio/mpeg; .mpga => audio/mpeg; audio/mp3 => .mp3
|
|
16989
16989
|
|
|
16990
|
-
if (!theFile.name.endsWith('.' + extension) && // Not already has preferred extension? and ...
|
|
16990
|
+
if (extension && !theFile.name.endsWith('.' + extension) && // Not already has preferred extension? and ...
|
|
16991
16991
|
theFile.type !== mime.lookup(theFile.name)) {
|
|
16992
16992
|
// the mime type of this ext is not the right one?
|
|
16993
16993
|
suffix = '_.' + extension; // console.log('MIME TYPE MISMATCH: ' + mime.lookup(theFile.name) + ': adding extension: ' + suffix)
|
|
@@ -43592,12 +43592,6 @@ class Term {
|
|
|
43592
43592
|
return this.id;
|
|
43593
43593
|
}
|
|
43594
43594
|
|
|
43595
|
-
// ### Implement hashCode for Immutable.js, since we implement `equals`
|
|
43596
|
-
// https://immutable-js.com/docs/v4.0.0/ValueObject/#hashCode()
|
|
43597
|
-
get hashCode() {
|
|
43598
|
-
return 0;
|
|
43599
|
-
}
|
|
43600
|
-
|
|
43601
43595
|
// ### Returns whether this object represents the same term as the other
|
|
43602
43596
|
equals(other) {
|
|
43603
43597
|
// If both terms were created by this library,
|
|
@@ -43609,6 +43603,12 @@ class Term {
|
|
|
43609
43603
|
this.value === other.value;
|
|
43610
43604
|
}
|
|
43611
43605
|
|
|
43606
|
+
// ### Implement hashCode for Immutable.js, since we implement `equals`
|
|
43607
|
+
// https://immutable-js.com/docs/v4.0.0/ValueObject/#hashCode()
|
|
43608
|
+
hashCode() {
|
|
43609
|
+
return 0;
|
|
43610
|
+
}
|
|
43611
|
+
|
|
43612
43612
|
// ### Returns a plain object representation of this term
|
|
43613
43613
|
toJSON() {
|
|
43614
43614
|
return {
|
|
@@ -44034,16 +44034,17 @@ class N3Lexer {
|
|
|
44034
44034
|
_tokenizeToEnd(callback, inputFinished) {
|
|
44035
44035
|
// Continue parsing as far as possible; the loop will return eventually
|
|
44036
44036
|
let input = this._input;
|
|
44037
|
-
|
|
44037
|
+
let currentLineLength = input.length;
|
|
44038
44038
|
while (true) {
|
|
44039
44039
|
// Count and skip whitespace lines
|
|
44040
44040
|
let whiteSpaceMatch, comment;
|
|
44041
44041
|
while (whiteSpaceMatch = this._newline.exec(input)) {
|
|
44042
44042
|
// Try to find a comment
|
|
44043
|
-
if (
|
|
44044
|
-
|
|
44043
|
+
if (this._comments && (comment = this._comment.exec(whiteSpaceMatch[0])))
|
|
44044
|
+
emitToken('comment', comment[1], '', this._line, whiteSpaceMatch[0].length);
|
|
44045
44045
|
// Advance the input
|
|
44046
44046
|
input = input.substr(whiteSpaceMatch[0].length, input.length);
|
|
44047
|
+
currentLineLength = input.length;
|
|
44047
44048
|
this._line++;
|
|
44048
44049
|
}
|
|
44049
44050
|
// Skip whitespace on current line
|
|
@@ -44055,9 +44056,10 @@ class N3Lexer {
|
|
|
44055
44056
|
// If the input is finished, emit EOF
|
|
44056
44057
|
if (inputFinished) {
|
|
44057
44058
|
// Try to find a final comment
|
|
44058
|
-
if (
|
|
44059
|
-
|
|
44060
|
-
|
|
44059
|
+
if (this._comments && (comment = this._comment.exec(input)))
|
|
44060
|
+
emitToken('comment', comment[1], '', this._line, input.length);
|
|
44061
|
+
input = null;
|
|
44062
|
+
emitToken('eof', '', '', this._line, 0);
|
|
44061
44063
|
}
|
|
44062
44064
|
return this._input = input;
|
|
44063
44065
|
}
|
|
@@ -44301,14 +44303,23 @@ class N3Lexer {
|
|
|
44301
44303
|
}
|
|
44302
44304
|
|
|
44303
44305
|
// Emit the parsed token
|
|
44304
|
-
const
|
|
44305
|
-
|
|
44306
|
+
const length = matchLength || match[0].length;
|
|
44307
|
+
const token = emitToken(type, value, prefix, line, length);
|
|
44306
44308
|
this.previousToken = token;
|
|
44307
44309
|
this._previousMarker = type;
|
|
44310
|
+
|
|
44308
44311
|
// Advance to next part to tokenize
|
|
44309
|
-
input = input.substr(
|
|
44312
|
+
input = input.substr(length, input.length);
|
|
44310
44313
|
}
|
|
44311
44314
|
|
|
44315
|
+
// Emits the token through the callback
|
|
44316
|
+
function emitToken(type, value, prefix, line, length) {
|
|
44317
|
+
const start = input ? currentLineLength - input.length : currentLineLength;
|
|
44318
|
+
const end = start + length;
|
|
44319
|
+
const token = { type, value, prefix, line, start, end };
|
|
44320
|
+
callback(null, token);
|
|
44321
|
+
return token;
|
|
44322
|
+
}
|
|
44312
44323
|
// Signals the syntax error through the callback
|
|
44313
44324
|
function reportSyntaxError(self) { callback(self._syntaxError(/^\S*/.exec(input)[0])); }
|
|
44314
44325
|
}
|
|
@@ -45580,7 +45591,7 @@ function inDefaultGraph(quad) {
|
|
|
45580
45591
|
|
|
45581
45592
|
// Creates a function that prepends the given IRI to a local name
|
|
45582
45593
|
function prefix(iri, factory) {
|
|
45583
|
-
return prefixes({ '': iri }, factory)('');
|
|
45594
|
+
return prefixes({ '': iri.value || iri }, factory)('');
|
|
45584
45595
|
}
|
|
45585
45596
|
|
|
45586
45597
|
// Creates a function that allows registering and expanding prefixes
|
|
@@ -48963,9 +48974,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48963
48974
|
|
|
48964
48975
|
var _supports;
|
|
48965
48976
|
|
|
48966
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
48977
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
48967
48978
|
|
|
48968
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
48979
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
48969
48980
|
|
|
48970
48981
|
|
|
48971
48982
|
|
|
@@ -49066,9 +49077,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49066
49077
|
/* harmony import */ var _extended_term_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./extended-term-factory */ "./node_modules/rdflib/esm/factories/extended-term-factory.js");
|
|
49067
49078
|
|
|
49068
49079
|
|
|
49069
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
49080
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
49070
49081
|
|
|
49071
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
49082
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
49072
49083
|
|
|
49073
49084
|
|
|
49074
49085
|
|
|
@@ -49134,10 +49145,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49134
49145
|
/* harmony export */ "default": () => (/* binding */ Fetcher)
|
|
49135
49146
|
/* harmony export */ });
|
|
49136
49147
|
/* harmony import */ var _babel_runtime_helpers_asyncToGenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ "./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");
|
|
49137
|
-
/* harmony import */ var
|
|
49138
|
-
/* harmony import */ var
|
|
49139
|
-
/* harmony import */ var
|
|
49140
|
-
/* harmony import */ var
|
|
49148
|
+
/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
49149
|
+
/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
49150
|
+
/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
49151
|
+
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
49141
49152
|
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
49142
49153
|
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
49143
49154
|
/* harmony import */ var _babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/regenerator */ "./node_modules/@babel/runtime/regenerator/index.js");
|
|
@@ -49168,7 +49179,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49168
49179
|
|
|
49169
49180
|
|
|
49170
49181
|
|
|
49171
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,
|
|
49182
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_3__["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_3__["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_2__["default"])(this, result); }; }
|
|
49172
49183
|
|
|
49173
49184
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
49174
49185
|
|
|
@@ -49255,7 +49266,7 @@ var getNS = function getNS(factory) {
|
|
|
49255
49266
|
|
|
49256
49267
|
var ns = getNS();
|
|
49257
49268
|
|
|
49258
|
-
var Handler = // TODO: Document, type
|
|
49269
|
+
var Handler = /*#__PURE__*/(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])( // TODO: Document, type
|
|
49259
49270
|
// TODO: Document, type
|
|
49260
49271
|
function Handler(response, dom) {
|
|
49261
49272
|
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_5__["default"])(this, Handler);
|
|
@@ -49267,12 +49278,12 @@ function Handler(response, dom) {
|
|
|
49267
49278
|
this.response = response; // The type assertion operator here might need to be removed.
|
|
49268
49279
|
|
|
49269
49280
|
this.dom = dom;
|
|
49270
|
-
};
|
|
49281
|
+
});
|
|
49271
49282
|
|
|
49272
49283
|
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])(Handler, "pattern", void 0);
|
|
49273
49284
|
|
|
49274
49285
|
var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
49275
|
-
(0,
|
|
49286
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(RDFXMLHandler, _Handler);
|
|
49276
49287
|
|
|
49277
49288
|
var _super = _createSuper(RDFXMLHandler);
|
|
49278
49289
|
|
|
@@ -49282,7 +49293,7 @@ var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
|
49282
49293
|
return _super.apply(this, arguments);
|
|
49283
49294
|
}
|
|
49284
49295
|
|
|
49285
|
-
(0,
|
|
49296
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(RDFXMLHandler, [{
|
|
49286
49297
|
key: "parse",
|
|
49287
49298
|
value: function parse(fetcher,
|
|
49288
49299
|
/** An XML String */
|
|
@@ -49337,7 +49348,7 @@ var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
|
49337
49348
|
RDFXMLHandler.pattern = new RegExp('application/rdf\\+xml');
|
|
49338
49349
|
|
|
49339
49350
|
var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
49340
|
-
(0,
|
|
49351
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(XHTMLHandler, _Handler2);
|
|
49341
49352
|
|
|
49342
49353
|
var _super2 = _createSuper(XHTMLHandler);
|
|
49343
49354
|
|
|
@@ -49347,7 +49358,7 @@ var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
|
49347
49358
|
return _super2.apply(this, arguments);
|
|
49348
49359
|
}
|
|
49349
49360
|
|
|
49350
|
-
(0,
|
|
49361
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(XHTMLHandler, [{
|
|
49351
49362
|
key: "parse",
|
|
49352
49363
|
value: function parse(fetcher, responseText, options) {
|
|
49353
49364
|
var relation, reverse;
|
|
@@ -49431,7 +49442,7 @@ var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
|
49431
49442
|
XHTMLHandler.pattern = new RegExp('application/xhtml');
|
|
49432
49443
|
|
|
49433
49444
|
var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
49434
|
-
(0,
|
|
49445
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(XMLHandler, _Handler3);
|
|
49435
49446
|
|
|
49436
49447
|
var _super3 = _createSuper(XMLHandler);
|
|
49437
49448
|
|
|
@@ -49441,7 +49452,7 @@ var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
|
49441
49452
|
return _super3.apply(this, arguments);
|
|
49442
49453
|
}
|
|
49443
49454
|
|
|
49444
|
-
(0,
|
|
49455
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(XMLHandler, [{
|
|
49445
49456
|
key: "parse",
|
|
49446
49457
|
value: function parse(fetcher, responseText, options) {
|
|
49447
49458
|
var dom = _utils_js__WEBPACK_IMPORTED_MODULE_11__.parseXML(responseText); // XML Semantics defined by root element namespace
|
|
@@ -49525,7 +49536,7 @@ var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
|
49525
49536
|
XMLHandler.pattern = new RegExp('(text|application)/(.*)xml');
|
|
49526
49537
|
|
|
49527
49538
|
var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
49528
|
-
(0,
|
|
49539
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(HTMLHandler, _Handler4);
|
|
49529
49540
|
|
|
49530
49541
|
var _super4 = _createSuper(HTMLHandler);
|
|
49531
49542
|
|
|
@@ -49535,7 +49546,7 @@ var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
|
49535
49546
|
return _super4.apply(this, arguments);
|
|
49536
49547
|
}
|
|
49537
49548
|
|
|
49538
|
-
(0,
|
|
49549
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(HTMLHandler, [{
|
|
49539
49550
|
key: "parse",
|
|
49540
49551
|
value: function parse(fetcher, responseText, options) {
|
|
49541
49552
|
var kb = fetcher.store; // We only handle XHTML so we have to figure out if this is XML
|
|
@@ -49597,7 +49608,7 @@ var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
|
49597
49608
|
HTMLHandler.pattern = new RegExp('text/html');
|
|
49598
49609
|
|
|
49599
49610
|
var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
49600
|
-
(0,
|
|
49611
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(JsonLdHandler, _Handler5);
|
|
49601
49612
|
|
|
49602
49613
|
var _super5 = _createSuper(JsonLdHandler);
|
|
49603
49614
|
|
|
@@ -49607,7 +49618,7 @@ var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
|
49607
49618
|
return _super5.apply(this, arguments);
|
|
49608
49619
|
}
|
|
49609
49620
|
|
|
49610
|
-
(0,
|
|
49621
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(JsonLdHandler, [{
|
|
49611
49622
|
key: "parse",
|
|
49612
49623
|
value: function parse(fetcher, responseText, options, response) {
|
|
49613
49624
|
var kb = fetcher.store;
|
|
@@ -49643,7 +49654,7 @@ var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
|
49643
49654
|
JsonLdHandler.pattern = /application\/ld\+json/;
|
|
49644
49655
|
|
|
49645
49656
|
var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
49646
|
-
(0,
|
|
49657
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(TextHandler, _Handler6);
|
|
49647
49658
|
|
|
49648
49659
|
var _super6 = _createSuper(TextHandler);
|
|
49649
49660
|
|
|
@@ -49653,7 +49664,7 @@ var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
|
49653
49664
|
return _super6.apply(this, arguments);
|
|
49654
49665
|
}
|
|
49655
49666
|
|
|
49656
|
-
(0,
|
|
49667
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(TextHandler, [{
|
|
49657
49668
|
key: "parse",
|
|
49658
49669
|
value: function parse(fetcher, responseText, options) {
|
|
49659
49670
|
// We only speak dialects of XML right now. Is this XML?
|
|
@@ -49697,7 +49708,7 @@ var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
|
49697
49708
|
TextHandler.pattern = new RegExp('text/plain');
|
|
49698
49709
|
|
|
49699
49710
|
var N3Handler = /*#__PURE__*/function (_Handler7) {
|
|
49700
|
-
(0,
|
|
49711
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_1__["default"])(N3Handler, _Handler7);
|
|
49701
49712
|
|
|
49702
49713
|
var _super7 = _createSuper(N3Handler);
|
|
49703
49714
|
|
|
@@ -49707,7 +49718,7 @@ var N3Handler = /*#__PURE__*/function (_Handler7) {
|
|
|
49707
49718
|
return _super7.apply(this, arguments);
|
|
49708
49719
|
}
|
|
49709
49720
|
|
|
49710
|
-
(0,
|
|
49721
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(N3Handler, [{
|
|
49711
49722
|
key: "parse",
|
|
49712
49723
|
value: function parse(fetcher, responseText, options, response) {
|
|
49713
49724
|
// Parse the text of this N3 file
|
|
@@ -49896,7 +49907,7 @@ var Fetcher = /*#__PURE__*/function () {
|
|
|
49896
49907
|
});
|
|
49897
49908
|
}
|
|
49898
49909
|
|
|
49899
|
-
(0,
|
|
49910
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_4__["default"])(Fetcher, [{
|
|
49900
49911
|
key: "load",
|
|
49901
49912
|
value:
|
|
49902
49913
|
/**
|
|
@@ -52352,109 +52363,111 @@ var Formula = /*#__PURE__*/function (_Node) {
|
|
|
52352
52363
|
"use strict";
|
|
52353
52364
|
__webpack_require__.r(__webpack_exports__);
|
|
52354
52365
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
52355
|
-
/* harmony export */ "BlankNode": () => (/* reexport safe */
|
|
52356
|
-
/* harmony export */ "Collection": () => (/* reexport safe */
|
|
52366
|
+
/* harmony export */ "BlankNode": () => (/* reexport safe */ _blank_node__WEBPACK_IMPORTED_MODULE_10__["default"]),
|
|
52367
|
+
/* harmony export */ "Collection": () => (/* reexport safe */ _collection__WEBPACK_IMPORTED_MODULE_12__["default"]),
|
|
52357
52368
|
/* harmony export */ "ConnectedStore": () => (/* binding */ ConnectedStore),
|
|
52358
|
-
/* harmony export */ "DataFactory": () => (/* reexport safe */
|
|
52359
|
-
/* harmony export */ "Empty": () => (/* reexport safe */
|
|
52360
|
-
/* harmony export */ "Fetcher": () => (/* reexport safe */
|
|
52361
|
-
/* harmony export */ "Formula": () => (/* reexport safe */
|
|
52362
|
-
/* harmony export */ "IndexedFormula": () => (/* reexport safe */
|
|
52363
|
-
/* harmony export */ "Literal": () => (/* reexport safe */
|
|
52369
|
+
/* harmony export */ "DataFactory": () => (/* reexport safe */ _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__["default"]),
|
|
52370
|
+
/* harmony export */ "Empty": () => (/* reexport safe */ _empty__WEBPACK_IMPORTED_MODULE_14__["default"]),
|
|
52371
|
+
/* harmony export */ "Fetcher": () => (/* reexport safe */ _fetcher__WEBPACK_IMPORTED_MODULE_15__["default"]),
|
|
52372
|
+
/* harmony export */ "Formula": () => (/* reexport safe */ _formula__WEBPACK_IMPORTED_MODULE_8__["default"]),
|
|
52373
|
+
/* harmony export */ "IndexedFormula": () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_16__["default"]),
|
|
52374
|
+
/* harmony export */ "Literal": () => (/* reexport safe */ _literal__WEBPACK_IMPORTED_MODULE_18__["default"]),
|
|
52364
52375
|
/* harmony export */ "LiveStore": () => (/* binding */ LiveStore),
|
|
52365
|
-
/* harmony export */ "N3Parser": () => (/* reexport safe */
|
|
52366
|
-
/* harmony export */ "NamedNode": () => (/* reexport safe */
|
|
52367
|
-
/* harmony export */ "Namespace": () => (/* reexport safe */
|
|
52376
|
+
/* harmony export */ "N3Parser": () => (/* reexport safe */ _n3parser__WEBPACK_IMPORTED_MODULE_20__["default"]),
|
|
52377
|
+
/* harmony export */ "NamedNode": () => (/* reexport safe */ _named_node__WEBPACK_IMPORTED_MODULE_21__["default"]),
|
|
52378
|
+
/* harmony export */ "Namespace": () => (/* reexport safe */ _namespace__WEBPACK_IMPORTED_MODULE_22__["default"]),
|
|
52368
52379
|
/* harmony export */ "NextId": () => (/* binding */ NextId),
|
|
52369
|
-
/* harmony export */ "Node": () => (/* reexport safe */
|
|
52370
|
-
/* harmony export */ "Query": () => (/* reexport safe */
|
|
52371
|
-
/* harmony export */ "RDFParser": () => (/* reexport safe */
|
|
52372
|
-
/* harmony export */ "RDFaProcessor": () => (/* reexport safe */
|
|
52373
|
-
/* harmony export */ "SPARQLToQuery": () => (/* reexport safe */
|
|
52374
|
-
/* harmony export */ "Serializer": () => (/* reexport safe */
|
|
52375
|
-
/* harmony export */ "Statement": () => (/* reexport safe */
|
|
52376
|
-
/* harmony export */ "Store": () => (/* reexport safe */
|
|
52377
|
-
/* harmony export */ "UpdateManager": () => (/* reexport safe */
|
|
52378
|
-
/* harmony export */ "UpdatesSocket": () => (/* reexport safe */
|
|
52379
|
-
/* harmony export */ "UpdatesVia": () => (/* reexport safe */
|
|
52380
|
-
/* harmony export */ "Util": () => (/* reexport module object */
|
|
52381
|
-
/* harmony export */ "Variable": () => (/* reexport safe */
|
|
52380
|
+
/* harmony export */ "Node": () => (/* reexport safe */ _node__WEBPACK_IMPORTED_MODULE_9__["default"]),
|
|
52381
|
+
/* harmony export */ "Query": () => (/* reexport safe */ _query__WEBPACK_IMPORTED_MODULE_24__.Query),
|
|
52382
|
+
/* harmony export */ "RDFParser": () => (/* reexport safe */ _rdfxmlparser__WEBPACK_IMPORTED_MODULE_27__["default"]),
|
|
52383
|
+
/* harmony export */ "RDFaProcessor": () => (/* reexport safe */ _rdfaparser__WEBPACK_IMPORTED_MODULE_26__["default"]),
|
|
52384
|
+
/* harmony export */ "SPARQLToQuery": () => (/* reexport safe */ _sparql_to_query__WEBPACK_IMPORTED_MODULE_30__["default"]),
|
|
52385
|
+
/* harmony export */ "Serializer": () => (/* reexport safe */ _serializer__WEBPACK_IMPORTED_MODULE_29__["default"]),
|
|
52386
|
+
/* harmony export */ "Statement": () => (/* reexport safe */ _statement__WEBPACK_IMPORTED_MODULE_32__["default"]),
|
|
52387
|
+
/* harmony export */ "Store": () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_16__["default"]),
|
|
52388
|
+
/* harmony export */ "UpdateManager": () => (/* reexport safe */ _update_manager__WEBPACK_IMPORTED_MODULE_33__["default"]),
|
|
52389
|
+
/* harmony export */ "UpdatesSocket": () => (/* reexport safe */ _updates_via__WEBPACK_IMPORTED_MODULE_34__.UpdatesSocket),
|
|
52390
|
+
/* harmony export */ "UpdatesVia": () => (/* reexport safe */ _updates_via__WEBPACK_IMPORTED_MODULE_34__.UpdatesVia),
|
|
52391
|
+
/* harmony export */ "Util": () => (/* reexport module object */ _utils_js__WEBPACK_IMPORTED_MODULE_36__),
|
|
52392
|
+
/* harmony export */ "Variable": () => (/* reexport safe */ _variable__WEBPACK_IMPORTED_MODULE_37__["default"]),
|
|
52382
52393
|
/* harmony export */ "blankNode": () => (/* binding */ blankNode),
|
|
52383
|
-
/* harmony export */ "convert": () => (/* reexport module object */
|
|
52394
|
+
/* harmony export */ "convert": () => (/* reexport module object */ _convert__WEBPACK_IMPORTED_MODULE_13__),
|
|
52384
52395
|
/* harmony export */ "defaultGraph": () => (/* binding */ defaultGraph),
|
|
52385
52396
|
/* harmony export */ "fetcher": () => (/* binding */ fetcher),
|
|
52386
52397
|
/* harmony export */ "fromNT": () => (/* binding */ fromNT),
|
|
52387
52398
|
/* harmony export */ "graph": () => (/* binding */ graph),
|
|
52388
|
-
/* harmony export */ "isBlankNode": () => (/* reexport safe */
|
|
52389
|
-
/* harmony export */ "isCollection": () => (/* reexport safe */
|
|
52390
|
-
/* harmony export */ "isGraph": () => (/* reexport safe */
|
|
52391
|
-
/* harmony export */ "isLiteral": () => (/* reexport safe */
|
|
52392
|
-
/* harmony export */ "isNamedNode": () => (/* reexport safe */
|
|
52393
|
-
/* harmony export */ "isPredicate": () => (/* reexport safe */
|
|
52394
|
-
/* harmony export */ "isQuad": () => (/* reexport safe */
|
|
52395
|
-
/* harmony export */ "isRDFObject": () => (/* reexport safe */
|
|
52396
|
-
/* harmony export */ "isRDFlibObject": () => (/* reexport safe */
|
|
52397
|
-
/* harmony export */ "isStatement": () => (/* reexport safe */
|
|
52398
|
-
/* harmony export */ "isStore": () => (/* reexport safe */
|
|
52399
|
-
/* harmony export */ "isSubject": () => (/* reexport safe */
|
|
52400
|
-
/* harmony export */ "isTerm": () => (/* reexport safe */
|
|
52401
|
-
/* harmony export */ "isVariable": () => (/* reexport safe */
|
|
52402
|
-
/* harmony export */ "jsonParser": () => (/* reexport safe */
|
|
52399
|
+
/* harmony export */ "isBlankNode": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isBlankNode),
|
|
52400
|
+
/* harmony export */ "isCollection": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isCollection),
|
|
52401
|
+
/* harmony export */ "isGraph": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isGraph),
|
|
52402
|
+
/* harmony export */ "isLiteral": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isLiteral),
|
|
52403
|
+
/* harmony export */ "isNamedNode": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isNamedNode),
|
|
52404
|
+
/* harmony export */ "isPredicate": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isPredicate),
|
|
52405
|
+
/* harmony export */ "isQuad": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isQuad),
|
|
52406
|
+
/* harmony export */ "isRDFObject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isRDFObject),
|
|
52407
|
+
/* harmony export */ "isRDFlibObject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isRDFlibObject),
|
|
52408
|
+
/* harmony export */ "isStatement": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isStatement),
|
|
52409
|
+
/* harmony export */ "isStore": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isStore),
|
|
52410
|
+
/* harmony export */ "isSubject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isSubject),
|
|
52411
|
+
/* harmony export */ "isTerm": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isTerm),
|
|
52412
|
+
/* harmony export */ "isVariable": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_11__.isVariable),
|
|
52413
|
+
/* harmony export */ "jsonParser": () => (/* reexport safe */ _jsonparser__WEBPACK_IMPORTED_MODULE_17__["default"]),
|
|
52403
52414
|
/* harmony export */ "lit": () => (/* binding */ lit),
|
|
52404
52415
|
/* harmony export */ "literal": () => (/* binding */ literal),
|
|
52405
|
-
/* harmony export */ "log": () => (/* reexport safe */
|
|
52416
|
+
/* harmony export */ "log": () => (/* reexport safe */ _log__WEBPACK_IMPORTED_MODULE_19__["default"]),
|
|
52406
52417
|
/* harmony export */ "namedNode": () => (/* binding */ namedNode),
|
|
52407
|
-
/* harmony export */ "parse": () => (/* reexport safe */
|
|
52418
|
+
/* harmony export */ "parse": () => (/* reexport safe */ _parse__WEBPACK_IMPORTED_MODULE_23__["default"]),
|
|
52408
52419
|
/* harmony export */ "quad": () => (/* binding */ quad),
|
|
52409
|
-
/* harmony export */ "queryToSPARQL": () => (/* reexport safe */
|
|
52410
|
-
/* harmony export */ "serialize": () => (/* reexport safe */
|
|
52411
|
-
/* harmony export */ "sparqlUpdateParser": () => (/* reexport safe */
|
|
52420
|
+
/* harmony export */ "queryToSPARQL": () => (/* reexport safe */ _query_to_sparql__WEBPACK_IMPORTED_MODULE_25__["default"]),
|
|
52421
|
+
/* harmony export */ "serialize": () => (/* reexport safe */ _serialize__WEBPACK_IMPORTED_MODULE_28__["default"]),
|
|
52422
|
+
/* harmony export */ "sparqlUpdateParser": () => (/* reexport safe */ _patch_parser__WEBPACK_IMPORTED_MODULE_31__["default"]),
|
|
52412
52423
|
/* harmony export */ "st": () => (/* binding */ st),
|
|
52413
52424
|
/* harmony export */ "sym": () => (/* binding */ namedNode),
|
|
52414
52425
|
/* harmony export */ "term": () => (/* binding */ term),
|
|
52415
|
-
/* harmony export */ "termValue": () => (/* reexport safe */
|
|
52426
|
+
/* harmony export */ "termValue": () => (/* reexport safe */ _utils_termValue__WEBPACK_IMPORTED_MODULE_38__.termValue),
|
|
52416
52427
|
/* harmony export */ "triple": () => (/* binding */ triple),
|
|
52417
|
-
/* harmony export */ "uri": () => (/* reexport module object */
|
|
52428
|
+
/* harmony export */ "uri": () => (/* reexport module object */ _uri__WEBPACK_IMPORTED_MODULE_35__),
|
|
52418
52429
|
/* harmony export */ "variable": () => (/* binding */ variable)
|
|
52419
52430
|
/* harmony export */ });
|
|
52420
|
-
/* harmony import */ var
|
|
52421
|
-
/* harmony import */ var
|
|
52422
|
-
/* harmony import */ var
|
|
52423
|
-
/* harmony import */ var
|
|
52424
|
-
/* harmony import */ var
|
|
52425
|
-
/* harmony import */ var
|
|
52426
|
-
/* harmony import */ var
|
|
52427
|
-
/* harmony import */ var
|
|
52428
|
-
/* harmony import */ var
|
|
52429
|
-
/* harmony import */ var
|
|
52430
|
-
/* harmony import */ var
|
|
52431
|
-
/* harmony import */ var
|
|
52432
|
-
/* harmony import */ var
|
|
52433
|
-
/* harmony import */ var
|
|
52434
|
-
/* harmony import */ var
|
|
52435
|
-
/* harmony import */ var
|
|
52436
|
-
/* harmony import */ var
|
|
52437
|
-
/* harmony import */ var
|
|
52438
|
-
/* harmony import */ var
|
|
52439
|
-
/* harmony import */ var
|
|
52440
|
-
/* harmony import */ var
|
|
52441
|
-
/* harmony import */ var
|
|
52442
|
-
/* harmony import */ var
|
|
52443
|
-
/* harmony import */ var
|
|
52444
|
-
/* harmony import */ var
|
|
52445
|
-
/* harmony import */ var
|
|
52446
|
-
/* harmony import */ var
|
|
52447
|
-
/* harmony import */ var
|
|
52448
|
-
/* harmony import */ var
|
|
52449
|
-
/* harmony import */ var
|
|
52450
|
-
/* harmony import */ var
|
|
52451
|
-
/* harmony import */ var
|
|
52452
|
-
/* harmony import */ var
|
|
52453
|
-
/* harmony import */ var
|
|
52454
|
-
/* harmony import */ var
|
|
52455
|
-
/* harmony import */ var
|
|
52456
|
-
/* harmony import */ var
|
|
52457
|
-
/* harmony import */ var
|
|
52431
|
+
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
52432
|
+
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
52433
|
+
/* harmony import */ var _babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
52434
|
+
/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
52435
|
+
/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
52436
|
+
/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
52437
|
+
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
52438
|
+
/* harmony import */ var _blank_node__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./blank-node */ "./node_modules/rdflib/esm/blank-node.js");
|
|
52439
|
+
/* harmony import */ var _collection__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./collection */ "./node_modules/rdflib/esm/collection.js");
|
|
52440
|
+
/* harmony import */ var _convert__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./convert */ "./node_modules/rdflib/esm/convert.js");
|
|
52441
|
+
/* harmony import */ var _empty__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./empty */ "./node_modules/rdflib/esm/empty.js");
|
|
52442
|
+
/* harmony import */ var _fetcher__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./fetcher */ "./node_modules/rdflib/esm/fetcher.js");
|
|
52443
|
+
/* harmony import */ var _formula__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./formula */ "./node_modules/rdflib/esm/formula.js");
|
|
52444
|
+
/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./store */ "./node_modules/rdflib/esm/store.js");
|
|
52445
|
+
/* harmony import */ var _jsonparser__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./jsonparser */ "./node_modules/rdflib/esm/jsonparser.js");
|
|
52446
|
+
/* harmony import */ var _literal__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./literal */ "./node_modules/rdflib/esm/literal.js");
|
|
52447
|
+
/* harmony import */ var _log__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./log */ "./node_modules/rdflib/esm/log.js");
|
|
52448
|
+
/* harmony import */ var _n3parser__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./n3parser */ "./node_modules/rdflib/esm/n3parser.js");
|
|
52449
|
+
/* harmony import */ var _named_node__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./named-node */ "./node_modules/rdflib/esm/named-node.js");
|
|
52450
|
+
/* harmony import */ var _namespace__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./namespace */ "./node_modules/rdflib/esm/namespace.js");
|
|
52451
|
+
/* harmony import */ var _node__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./node */ "./node_modules/rdflib/esm/node.js");
|
|
52452
|
+
/* harmony import */ var _parse__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./parse */ "./node_modules/rdflib/esm/parse.js");
|
|
52453
|
+
/* harmony import */ var _query__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./query */ "./node_modules/rdflib/esm/query.js");
|
|
52454
|
+
/* harmony import */ var _query_to_sparql__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./query-to-sparql */ "./node_modules/rdflib/esm/query-to-sparql.js");
|
|
52455
|
+
/* harmony import */ var _rdfaparser__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./rdfaparser */ "./node_modules/rdflib/esm/rdfaparser.js");
|
|
52456
|
+
/* harmony import */ var _rdfxmlparser__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./rdfxmlparser */ "./node_modules/rdflib/esm/rdfxmlparser.js");
|
|
52457
|
+
/* harmony import */ var _serialize__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./serialize */ "./node_modules/rdflib/esm/serialize.js");
|
|
52458
|
+
/* harmony import */ var _serializer__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./serializer */ "./node_modules/rdflib/esm/serializer.js");
|
|
52459
|
+
/* harmony import */ var _sparql_to_query__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./sparql-to-query */ "./node_modules/rdflib/esm/sparql-to-query.js");
|
|
52460
|
+
/* harmony import */ var _patch_parser__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./patch-parser */ "./node_modules/rdflib/esm/patch-parser.js");
|
|
52461
|
+
/* harmony import */ var _statement__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./statement */ "./node_modules/rdflib/esm/statement.js");
|
|
52462
|
+
/* harmony import */ var _update_manager__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./update-manager */ "./node_modules/rdflib/esm/update-manager.js");
|
|
52463
|
+
/* harmony import */ var _updates_via__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./updates-via */ "./node_modules/rdflib/esm/updates-via.js");
|
|
52464
|
+
/* harmony import */ var _uri__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./uri */ "./node_modules/rdflib/esm/uri.js");
|
|
52465
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./utils-js */ "./node_modules/rdflib/esm/utils-js.js");
|
|
52466
|
+
/* harmony import */ var _variable__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./variable */ "./node_modules/rdflib/esm/variable.js");
|
|
52467
|
+
/* harmony import */ var _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./factories/rdflib-data-factory */ "./node_modules/rdflib/esm/factories/rdflib-data-factory.js");
|
|
52468
|
+
/* harmony import */ var _utils_terms__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utils/terms */ "./node_modules/rdflib/esm/utils/terms.js");
|
|
52469
|
+
/* harmony import */ var _utils_termValue__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./utils/termValue */ "./node_modules/rdflib/esm/utils/termValue.js");
|
|
52470
|
+
|
|
52458
52471
|
|
|
52459
52472
|
|
|
52460
52473
|
|
|
@@ -52462,7 +52475,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
52462
52475
|
|
|
52463
52476
|
|
|
52464
52477
|
|
|
52465
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,
|
|
52478
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_5__["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_5__["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_4__["default"])(this, result); }; }
|
|
52466
52479
|
|
|
52467
52480
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
52468
52481
|
|
|
@@ -52500,8 +52513,8 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
52500
52513
|
|
|
52501
52514
|
var boundDataFactory = {};
|
|
52502
52515
|
|
|
52503
|
-
for (var name in
|
|
52504
|
-
if (typeof
|
|
52516
|
+
for (var name in _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__["default"]) {
|
|
52517
|
+
if (typeof _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__["default"][name] === 'function') boundDataFactory[name] = _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__["default"][name].bind(_factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_7__["default"]);
|
|
52505
52518
|
}
|
|
52506
52519
|
|
|
52507
52520
|
var fetcher = boundDataFactory.fetcher,
|
|
@@ -52515,58 +52528,58 @@ var fetcher = boundDataFactory.fetcher,
|
|
|
52515
52528
|
literal = boundDataFactory.literal,
|
|
52516
52529
|
quad = boundDataFactory.quad,
|
|
52517
52530
|
triple = boundDataFactory.triple;
|
|
52518
|
-
var formula = new
|
|
52531
|
+
var formula = new _formula__WEBPACK_IMPORTED_MODULE_8__["default"]();
|
|
52519
52532
|
|
|
52520
52533
|
var fromNT = function fromNT(str) {
|
|
52521
52534
|
return formula.fromNT(str);
|
|
52522
52535
|
};
|
|
52523
52536
|
|
|
52524
|
-
var term =
|
|
52537
|
+
var term = _node__WEBPACK_IMPORTED_MODULE_9__["default"].fromValue; // TODO: this export is broken;
|
|
52525
52538
|
// it exports the _current_ value of nextId, which is always 0
|
|
52526
52539
|
|
|
52527
|
-
var NextId =
|
|
52540
|
+
var NextId = _blank_node__WEBPACK_IMPORTED_MODULE_10__["default"].nextId;
|
|
52528
52541
|
|
|
52529
52542
|
|
|
52530
52543
|
|
|
52531
52544
|
var ConnectedStore = /*#__PURE__*/function (_Store) {
|
|
52532
|
-
(0,
|
|
52545
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_3__["default"])(ConnectedStore, _Store);
|
|
52533
52546
|
|
|
52534
52547
|
var _super = _createSuper(ConnectedStore);
|
|
52535
52548
|
|
|
52536
52549
|
function ConnectedStore(features) {
|
|
52537
52550
|
var _this;
|
|
52538
52551
|
|
|
52539
|
-
(0,
|
|
52552
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__["default"])(this, ConnectedStore);
|
|
52540
52553
|
|
|
52541
52554
|
_this = _super.call(this, features);
|
|
52542
52555
|
|
|
52543
|
-
(0,
|
|
52556
|
+
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_2__["default"])(_this), "fetcher", void 0);
|
|
52544
52557
|
|
|
52545
|
-
_this.fetcher = new
|
|
52558
|
+
_this.fetcher = new _fetcher__WEBPACK_IMPORTED_MODULE_15__["default"]((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_2__["default"])(_this), {});
|
|
52546
52559
|
return _this;
|
|
52547
52560
|
}
|
|
52548
52561
|
|
|
52549
|
-
return ConnectedStore;
|
|
52550
|
-
}(
|
|
52562
|
+
return (0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_0__["default"])(ConnectedStore);
|
|
52563
|
+
}(_store__WEBPACK_IMPORTED_MODULE_16__["default"]);
|
|
52551
52564
|
var LiveStore = /*#__PURE__*/function (_ConnectedStore) {
|
|
52552
|
-
(0,
|
|
52565
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_3__["default"])(LiveStore, _ConnectedStore);
|
|
52553
52566
|
|
|
52554
52567
|
var _super2 = _createSuper(LiveStore);
|
|
52555
52568
|
|
|
52556
52569
|
function LiveStore(features) {
|
|
52557
52570
|
var _this2;
|
|
52558
52571
|
|
|
52559
|
-
(0,
|
|
52572
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__["default"])(this, LiveStore);
|
|
52560
52573
|
|
|
52561
52574
|
_this2 = _super2.call(this, features);
|
|
52562
52575
|
|
|
52563
|
-
(0,
|
|
52576
|
+
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_2__["default"])(_this2), "updater", void 0);
|
|
52564
52577
|
|
|
52565
|
-
_this2.updater = new
|
|
52578
|
+
_this2.updater = new _update_manager__WEBPACK_IMPORTED_MODULE_33__["default"]((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_2__["default"])(_this2));
|
|
52566
52579
|
return _this2;
|
|
52567
52580
|
}
|
|
52568
52581
|
|
|
52569
|
-
return LiveStore;
|
|
52582
|
+
return (0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_0__["default"])(LiveStore);
|
|
52570
52583
|
}(ConnectedStore);
|
|
52571
52584
|
|
|
52572
52585
|
/***/ }),
|
|
@@ -55807,11 +55820,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55807
55820
|
/* harmony export */ "Query": () => (/* binding */ Query),
|
|
55808
55821
|
/* harmony export */ "indexedFormulaQuery": () => (/* binding */ indexedFormulaQuery)
|
|
55809
55822
|
/* harmony export */ });
|
|
55810
|
-
/* harmony import */ var
|
|
55811
|
-
/* harmony import */ var
|
|
55812
|
-
/* harmony import */ var
|
|
55813
|
-
/* harmony import */ var
|
|
55814
|
-
/* harmony import */ var
|
|
55823
|
+
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
55824
|
+
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
55825
|
+
/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./store */ "./node_modules/rdflib/esm/store.js");
|
|
55826
|
+
/* harmony import */ var _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/default-graph-uri */ "./node_modules/rdflib/esm/utils/default-graph-uri.js");
|
|
55827
|
+
/* harmony import */ var _log__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./log */ "./node_modules/rdflib/esm/log.js");
|
|
55828
|
+
/* harmony import */ var _uri__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./uri */ "./node_modules/rdflib/esm/uri.js");
|
|
55829
|
+
|
|
55815
55830
|
|
|
55816
55831
|
// Matching a formula against another formula
|
|
55817
55832
|
// Assync as well as Synchronously
|
|
@@ -55840,17 +55855,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55840
55855
|
* Query class, for tracking queries the user has in the UI.
|
|
55841
55856
|
*/
|
|
55842
55857
|
|
|
55843
|
-
var Query = function Query(name, id) {
|
|
55844
|
-
(0,
|
|
55858
|
+
var Query = /*#__PURE__*/(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_0__["default"])(function Query(name, id) {
|
|
55859
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__["default"])(this, Query);
|
|
55845
55860
|
|
|
55846
|
-
this.pat = new
|
|
55861
|
+
this.pat = new _store__WEBPACK_IMPORTED_MODULE_2__["default"](); // The pattern to search for
|
|
55847
55862
|
|
|
55848
55863
|
this.vars = []; // Used by UI code but not in query.js
|
|
55849
55864
|
// this.orderBy = [] // Not used yet
|
|
55850
55865
|
|
|
55851
55866
|
this.name = name;
|
|
55852
55867
|
this.id = id;
|
|
55853
|
-
};
|
|
55868
|
+
});
|
|
55854
55869
|
/**
|
|
55855
55870
|
* This function will match a pattern to the current Store
|
|
55856
55871
|
*
|
|
@@ -55927,7 +55942,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
55927
55942
|
other = formula.redirections[other];
|
|
55928
55943
|
}
|
|
55929
55944
|
|
|
55930
|
-
if (actual.equals(other) || actual.uri && actual.uri ===
|
|
55945
|
+
if (actual.equals(other) || actual.uri && actual.uri === _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_3__.defaultGraphURI) {
|
|
55931
55946
|
// Used to mean 'any graph' in a query
|
|
55932
55947
|
return [[[], null]];
|
|
55933
55948
|
}
|
|
@@ -56071,7 +56086,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56071
56086
|
}
|
|
56072
56087
|
}
|
|
56073
56088
|
|
|
56074
|
-
|
|
56089
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('OPTIONAL BIDNINGS ALL DONE:');
|
|
56075
56090
|
this.doCallBacks(this.branches.length - 1, this.trunkBindings);
|
|
56076
56091
|
}; // Recrursively generate the cross product of the bindings
|
|
56077
56092
|
|
|
@@ -56111,7 +56126,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56111
56126
|
|
|
56112
56127
|
MandatoryBranch.prototype.reportDone = function () {
|
|
56113
56128
|
this.done = true;
|
|
56114
|
-
|
|
56129
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].info('Mandatory query branch finished.***');
|
|
56115
56130
|
|
|
56116
56131
|
if (this.onDone !== undefined) {
|
|
56117
56132
|
this.onDone();
|
|
@@ -56133,13 +56148,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56133
56148
|
};
|
|
56134
56149
|
|
|
56135
56150
|
OptionalBranch.prototype.reportDone = function () {
|
|
56136
|
-
|
|
56151
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Optional branch finished - results.length = ' + this.results.length);
|
|
56137
56152
|
|
|
56138
56153
|
if (this.results.length === 0) {
|
|
56139
56154
|
// This is what optional means: if no hits,
|
|
56140
56155
|
this.results.push({}); // mimic success, but with no bindings
|
|
56141
56156
|
|
|
56142
|
-
|
|
56157
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug("Optional branch FAILED - that's OK.");
|
|
56143
56158
|
}
|
|
56144
56159
|
|
|
56145
56160
|
this.done = true;
|
|
@@ -56166,7 +56181,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56166
56181
|
for (i = 0; i < 4; i++) {
|
|
56167
56182
|
var t = terms[i]; // console.log(" Prepare (" + t + ") "+(t in bindings))
|
|
56168
56183
|
|
|
56169
|
-
if (t.uri && t.uri ===
|
|
56184
|
+
if (t.uri && t.uri === _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_3__.defaultGraphURI) {// chrome:session
|
|
56170
56185
|
// console.log(' query: Ignoring slot ' + i)
|
|
56171
56186
|
} else if (t.isVar && !(bindings[t] !== undefined)) {
|
|
56172
56187
|
item.nvars++;
|
|
@@ -56229,18 +56244,18 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56229
56244
|
***/
|
|
56230
56245
|
|
|
56231
56246
|
var match = function match(f, g, bindingsSoFar, level, fetcher, localCallback, branch) {
|
|
56232
|
-
|
|
56247
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Match begins, Branch count now: ' + branch.count + ' for ' + branch.pattern_debug); // log.debug("match: f has "+f.statements.length+", g has "+g.statements.length)
|
|
56233
56248
|
|
|
56234
56249
|
var pattern = g.statements;
|
|
56235
56250
|
|
|
56236
56251
|
if (pattern.length === 0) {
|
|
56237
56252
|
// when it's satisfied all the pattern triples
|
|
56238
|
-
|
|
56253
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('FOUND MATCH WITH BINDINGS:' + bindingDebug(bindingsSoFar));
|
|
56239
56254
|
|
|
56240
56255
|
if (g.optional.length === 0) {
|
|
56241
56256
|
branch.reportMatch(bindingsSoFar);
|
|
56242
56257
|
} else {
|
|
56243
|
-
|
|
56258
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('OPTIONAL: ' + g.optional);
|
|
56244
56259
|
var junction = new OptionalBranchJunction(callback, bindingsSoFar); // @@ won't work with nested optionals? nest callbacks
|
|
56245
56260
|
|
|
56246
56261
|
var br = [];
|
|
@@ -56260,7 +56275,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56260
56275
|
}
|
|
56261
56276
|
|
|
56262
56277
|
branch.count--;
|
|
56263
|
-
|
|
56278
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Match ends -- success , Branch count now: ' + branch.count + ' for ' + branch.pattern_debug);
|
|
56264
56279
|
return; // Success
|
|
56265
56280
|
}
|
|
56266
56281
|
|
|
@@ -56288,13 +56303,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56288
56303
|
for (i = 0; i < n; i++) {
|
|
56289
56304
|
item = pattern[i]; // for each of the triples in the query
|
|
56290
56305
|
|
|
56291
|
-
if (bindingsSoFar[item.subject] !== undefined && bindingsSoFar[item.subject].uri && fetcher && fetcher.getState((0,
|
|
56306
|
+
if (bindingsSoFar[item.subject] !== undefined && bindingsSoFar[item.subject].uri && fetcher && fetcher.getState((0,_uri__WEBPACK_IMPORTED_MODULE_5__.docpart)(bindingsSoFar[item.subject].uri)) === 'unrequested') {
|
|
56292
56307
|
// fetch the subject info and return to id
|
|
56293
56308
|
fetchResource(bindingsSoFar[item.subject], id);
|
|
56294
56309
|
return; // only look up one per line this time, but we will come back again though match
|
|
56295
56310
|
}
|
|
56296
56311
|
|
|
56297
|
-
if (bindingsSoFar[item.object] !== undefined && bindingsSoFar[item.object].uri && fetcher && fetcher.getState((0,
|
|
56312
|
+
if (bindingsSoFar[item.object] !== undefined && bindingsSoFar[item.object].uri && fetcher && fetcher.getState((0,_uri__WEBPACK_IMPORTED_MODULE_5__.docpart)(bindingsSoFar[item.object].uri)) === 'unrequested') {
|
|
56298
56313
|
fetchResource(bindingsSoFar[item.object], id);
|
|
56299
56314
|
return;
|
|
56300
56315
|
}
|
|
@@ -56355,7 +56370,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56355
56370
|
rest.constraints = g.constraints;
|
|
56356
56371
|
rest.statements = pattern.slice(1); // No indexes: we will not query g.
|
|
56357
56372
|
|
|
56358
|
-
|
|
56373
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug(level + 'match2 searching ' + item.index.length + ' for ' + item + '; bindings so far=' + bindingDebug(bindingsSoFar)); // var results = []
|
|
56359
56374
|
|
|
56360
56375
|
var c;
|
|
56361
56376
|
var nc = item.index.length;
|
|
@@ -56368,7 +56383,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56368
56383
|
st = item.index[c]; // for each statement in the item's index, spawn a new match with that binding
|
|
56369
56384
|
|
|
56370
56385
|
nbs1 = unifyContents([item.subject, item.predicate, item.object, item.why], [st.subject, st.predicate, st.object, st.why], bindingsSoFar, f);
|
|
56371
|
-
|
|
56386
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].info(level + ' From first: ' + nbs1.length + ': ' + bindingsDebug(nbs1));
|
|
56372
56387
|
nk = nbs1.length; // branch.count += nk
|
|
56373
56388
|
// log.debug("Branch count bumped "+nk+" to: "+branch.count)
|
|
56374
56389
|
|
|
@@ -56379,7 +56394,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56379
56394
|
|
|
56380
56395
|
if (!constraintsSatisfied(newBindings1, g.constraints)) {
|
|
56381
56396
|
// branch.count--
|
|
56382
|
-
|
|
56397
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Branch count CS: ' + branch.count);
|
|
56383
56398
|
} else {
|
|
56384
56399
|
for (v in newBindings1) {
|
|
56385
56400
|
if (newBindings1.hasOwnProperty(v)) {
|
|
@@ -56404,13 +56419,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56404
56419
|
branch.count--;
|
|
56405
56420
|
|
|
56406
56421
|
if (onward === 0) {
|
|
56407
|
-
|
|
56422
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Match2 fails completely on ' + item);
|
|
56408
56423
|
}
|
|
56409
56424
|
|
|
56410
|
-
|
|
56425
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Match2 ends, Branch count: ' + branch.count + ' for ' + branch.pattern_debug);
|
|
56411
56426
|
|
|
56412
56427
|
if (branch.count === 0) {
|
|
56413
|
-
|
|
56428
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Branch finished.');
|
|
56414
56429
|
branch.reportDone();
|
|
56415
56430
|
}
|
|
56416
56431
|
}; // match2
|
|
@@ -56418,7 +56433,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56418
56433
|
|
|
56419
56434
|
|
|
56420
56435
|
var f = this;
|
|
56421
|
-
|
|
56436
|
+
_log__WEBPACK_IMPORTED_MODULE_4__["default"].debug('Query on ' + this.statements.length);
|
|
56422
56437
|
var trunck = new MandatoryBranch(callback, onDone);
|
|
56423
56438
|
trunck.count++; // count one branch to complete at the moment
|
|
56424
56439
|
|
|
@@ -60392,9 +60407,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60392
60407
|
|
|
60393
60408
|
|
|
60394
60409
|
|
|
60395
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
60410
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
60396
60411
|
|
|
60397
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
60412
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
60398
60413
|
|
|
60399
60414
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
60400
60415
|
|