@lvce-editor/extension-host-worker 4.9.0 → 4.10.0
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.
|
@@ -5328,14 +5328,6 @@ const textSearch$2 = async (scheme, root, query, options, assetDir) => {
|
|
|
5328
5328
|
return allResults;
|
|
5329
5329
|
};
|
|
5330
5330
|
|
|
5331
|
-
const getChildHandles = async handle => {
|
|
5332
|
-
try {
|
|
5333
|
-
return await getChildHandles$1(handle);
|
|
5334
|
-
} catch (error) {
|
|
5335
|
-
throw new VError(error, 'failed to get child handles');
|
|
5336
|
-
}
|
|
5337
|
-
};
|
|
5338
|
-
|
|
5339
5331
|
const getDirectoryHandle = async uri => {
|
|
5340
5332
|
const handle = await getHandle(uri);
|
|
5341
5333
|
if (handle) {
|
|
@@ -5348,6 +5340,14 @@ const getDirectoryHandle = async uri => {
|
|
|
5348
5340
|
return getDirectoryHandle(dirname$1);
|
|
5349
5341
|
};
|
|
5350
5342
|
|
|
5343
|
+
const getChildHandles = async handle => {
|
|
5344
|
+
try {
|
|
5345
|
+
return await getChildHandles$1(handle);
|
|
5346
|
+
} catch (error) {
|
|
5347
|
+
throw new VError(error, 'failed to get child handles');
|
|
5348
|
+
}
|
|
5349
|
+
};
|
|
5350
|
+
|
|
5351
5351
|
const NotReadableError = 'NotReadableError';
|
|
5352
5352
|
|
|
5353
5353
|
const isNotReadableError = error => {
|
|
@@ -5390,6 +5390,7 @@ const textSearchRecursively = async (all, parent, handle, query) => {
|
|
|
5390
5390
|
}
|
|
5391
5391
|
await Promise.all(promises);
|
|
5392
5392
|
};
|
|
5393
|
+
|
|
5393
5394
|
const textSearch$1 = async (scheme, root, query) => {
|
|
5394
5395
|
string(scheme);
|
|
5395
5396
|
string(root);
|