webdetector/.cache/0c/1a46cd71ca0de345ae4413f6d72c43.json

1 line
11 KiB
JSON
Raw Normal View History

2018-12-21 12:36:28 +00:00
{"id":"../node_modules/@pushrocks/lik/dist/lik.tree.js","dependencies":[{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/@pushrocks/lik/ts/lik.tree.ts","includedInParent":true,"mtime":499162500000},{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/package.json","includedInParent":true,"mtime":1545395695572},{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/@pushrocks/lik/package.json","includedInParent":true,"mtime":1545395355371},{"name":"./lik.plugins","loc":{"line":3,"column":24},"parent":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/@pushrocks/lik/dist/lik.tree.js","resolved":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/@pushrocks/lik/dist/lik.plugins.js"}],"generated":{"js":"\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst plugins = require(\"./lik.plugins\");\nclass Tree {\n constructor() {\n this.symbolTree = new plugins.symbolTree();\n }\n // =======================================\n // Functions that map to the functionality of symbol-tree\n // =======================================\n /**\n *\n * @param objectArg\n */\n initialize(objectArg) {\n return this.symbolTree.initialize(objectArg);\n }\n hasChildren(objectArg) {\n return this.symbolTree.hasChildren(objectArg);\n }\n firstChild(objectArg) {\n return this.symbolTree.firstChild(objectArg);\n }\n lastChild(objectArg) {\n return this.symbolTree.lastChild(objectArg);\n }\n previousSibling(objectArg) {\n return this.symbolTree.previousSibling(objectArg);\n }\n nextSibling(objectArg) {\n return this.symbolTree.nextSibling(objectArg);\n }\n parent(objectArg) {\n return this.symbolTree.parent(objectArg);\n }\n lastInclusiveDescendant(objectArg) {\n return this.symbolTree.lastInclusiveDescendant(objectArg);\n }\n preceding(objectArg, optionsArg) {\n return this.symbolTree.preceding(objectArg, optionsArg);\n }\n following(object, optionsArg) {\n return this.symbolTree.following(object, optionsArg);\n }\n childrenToArray(parentArg, optionsArg) {\n return this.symbolTree.childrenToArray(parentArg, optionsArg);\n }\n ancestorsToArray(objectArg, optionsArg) {\n return this.symbolTree.ancestorsToArray(objectArg, optionsArg);\n }\n treeToArray(rootArg, optionsArg) {\n return this.symbolTree.treeToArray(rootArg, optionsArg);\n }\n childrenIterator(parentArg, optionsArg) {\n return this.symbolTree.childrenIterator(parentArg, optionsArg);\n }\n previousSiblingsIterator(objectArg) {\n return this.symbolTree.previousSiblingsIterator(objectArg);\n }\n nextSiblingsIterator(objectArg) {\n return this.symbolTree.nextSiblingsIterator();\n }\n ancestorsIterator(objectArg) {\n this.symbolTree.ancestorsIterator();\n }\n treeIterator(rootArg, optionsArg) {\n return this.symbolTree.treeIterator(rootArg);\n }\n index(childArg) {\n return this.symbolTree.index(childArg);\n }\n childrenCount(parentArg) {\n return this.symbolTree.childrenCount(parentArg);\n }\n compareTreePosition(leftArg, rightArg) {\n return this.compareTreePosition(leftArg, rightArg);\n }\n remove(removeObjectArg) {\n return this.symbolTree.remove(removeObjectArg);\n }\n insertBefore(referenceObjectArg, newObjectArg) {\n return this.symbolTree.insertBefore(referenceObjectArg, newObjectArg);\n }\n insertAfter(referenceObject, newObjectArg) {\n return this.symbolTree.insertAfter(referenceObject, newObjectArg);\n }\n prependChild(referenceObjectArg, newObjectArg) {\n return this.symbolTree.prependChild(referenceObjectArg, newObjectArg);\n }\n appendChild(referenceObjectArg, newObjectArg) {\n return this.symbolTree.appendChild(referenceObjectArg, newObjectArg);\n }\n // ===========================================\n // F