Home
last modified time | relevance | path

Searched refs:actualTree (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
Dload-actual.js24 #actualTree
48 this.actualTree = options.actualTree
66 if (this.actualTree) {
67 return this.actualTree
86 this.actualTree = treeCheck(tree)
87 return this.actualTree
121 this.#actualTree = this.#newNode(params)
123 this.#actualTree = await this.#newLink(params)
127 this.#actualTree = await this.#loadFSNode({
133 this.#actualTree.assertRootOverrides()
[all …]
Dreify.js178 return treeCheck(this.actualTree)
345 const actualTree = this.actualTree.target
353 const actual = actualTree.children.get(name)
366 const actual = this.actualTree.children.get(ws)
374 for (const tree of [this.idealTree, this.actualTree]) {
389 actual: this.actualTree,
1501 const actual = this.actualTree.inventory.get(loc)
1520 for (const [loc, actual] of this.actualTree.inventory.entries()) {
1560 this.actualTree = this.idealTree
1564 await this.actualTree.meta.save()
[all …]
/third_party/node/deps/npm/test/lib/utils/
Dreify-output.js21 actualTree: { property
38 actualTree: { property
59 actualTree: { property
92 actualTree: { property
121 actualTree: { property
219 actualTree: { inventory: { size: 999 }, children: [] }, property
232 actualTree: { inventory: new Map(), children: [] }, property
248 actualTree: { inventory: new Map(), children: [] }, property
262 actualTree: { inventory: new Map(), children: [] }, property
281 actualTree: { property
[all …]
Dreify-finish.js14 const mockReififyFinish = async (t, { actualTree = {}, otherDirs = {}, ...config }) => { argument
32 actualTree: typeof actualTree === 'function' ? actualTree(mock) : actualTree, property
57 actualTree: { property
71 actualTree: { property
85 actualTree: ({ other }) => ({
/third_party/node/deps/npm/lib/commands/
Ddiff.js146 let actualTree
155 actualTree = await arb.loadActual(opts)
156 node = actualTree &&
157 actualTree.inventory.query('name', spec.name)
174 (actualTree && actualTree.edgesOut.get(spec.name) || {}).spec
259 let actualTree
267 actualTree = await arb.loadActual(opts)
278 const node = actualTree
279 && actualTree.inventory.query('name', spec.name)
/third_party/node/deps/npm/lib/utils/
Dreify-output.js22 const { diff, actualTree } = arb
40 audited: auditReport && !auditReport.error ? actualTree.inventory.size : 0,
83 actualTree.inventory.has(d.ideal) && summary.added++
107 const fundingInfo = getFundingInfo(actualTree, { countOnly: true })
Dreify-finish.js12 const { options: { global }, actualTree } = arb
19 const npmNode = actualTree.inventory.get('node_modules/npm')