for (const { searchRoot, filePattern } of absoluteLocations) {
const files = (filePattern === undefined)
? await this.resolveFilesAtLocation(searchRoot, type, token) // if the location does not contain a glob pattern, resolve the location directly
promptFilesLocator.ts
: await this.searchFilesInLocation(searchRoot, filePattern, token);
for (const file of files) {