From 3e6ea6284178df0be4982d9775f47b47b14c6139 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Wed, 29 Apr 2020 22:00:31 +0200 Subject: BREAKING: Include limited metadata in 'DirEntry' objects (#4941) This change is to prevent needed a separate stat syscall for each file when using readdir. For consistency, this PR also modifies std's `WalkEntry` interface to extend `DirEntry` with an additional `path` field. --- std/fs/expand_glob_test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'std/fs/expand_glob_test.ts') diff --git a/std/fs/expand_glob_test.ts b/std/fs/expand_glob_test.ts index a2e6b4333..98abe0d73 100644 --- a/std/fs/expand_glob_test.ts +++ b/std/fs/expand_glob_test.ts @@ -19,12 +19,12 @@ async function expandGlobArray( options: ExpandGlobOptions ): Promise { const paths: string[] = []; - for await (const { filename } of expandGlob(globString, options)) { - paths.push(filename); + for await (const { path } of expandGlob(globString, options)) { + paths.push(path); } paths.sort(); const pathsSync = [...expandGlobSync(globString, options)].map( - ({ filename }): string => filename + ({ path }): string => path ); pathsSync.sort(); assertEquals(paths, pathsSync); -- cgit v1.2.3