@@ -551,7 +551,7 @@ impl Debug for DiskFileSystem {
551551
552552#[ turbo_tasks:: value_impl]
553553impl FileSystem for DiskFileSystem {
554- #[ turbo_tasks:: function( fs) ]
554+ #[ turbo_tasks:: function( fs, invalidator ) ]
555555 async fn read ( & self , fs_path : Vc < FileSystemPath > ) -> Result < Vc < FileContent > > {
556556 mark_session_dependent ( ) ;
557557 let full_path = self . to_sys_path ( fs_path) . await ?;
@@ -577,7 +577,7 @@ impl FileSystem for DiskFileSystem {
577577 Ok ( content. cell ( ) )
578578 }
579579
580- #[ turbo_tasks:: function( fs) ]
580+ #[ turbo_tasks:: function( fs, invalidator ) ]
581581 async fn raw_read_dir ( & self , fs_path : Vc < FileSystemPath > ) -> Result < Vc < RawDirectoryContent > > {
582582 mark_session_dependent ( ) ;
583583 let full_path = self . to_sys_path ( fs_path) . await ?;
@@ -632,7 +632,7 @@ impl FileSystem for DiskFileSystem {
632632 Ok ( RawDirectoryContent :: new ( entries) )
633633 }
634634
635- #[ turbo_tasks:: function( fs) ]
635+ #[ turbo_tasks:: function( fs, invalidator ) ]
636636 async fn read_link ( & self , fs_path : Vc < FileSystemPath > ) -> Result < Vc < LinkContent > > {
637637 mark_session_dependent ( ) ;
638638 let full_path = self . to_sys_path ( fs_path) . await ?;
@@ -718,7 +718,7 @@ impl FileSystem for DiskFileSystem {
718718 . cell ( ) )
719719 }
720720
721- #[ turbo_tasks:: function( fs) ]
721+ #[ turbo_tasks:: function( fs, invalidator ) ]
722722 async fn write ( & self , fs_path : Vc < FileSystemPath > , content : Vc < FileContent > ) -> Result < ( ) > {
723723 mark_session_dependent ( ) ;
724724 let full_path = self . to_sys_path ( fs_path) . await ?;
@@ -843,7 +843,7 @@ impl FileSystem for DiskFileSystem {
843843 Ok ( ( ) )
844844 }
845845
846- #[ turbo_tasks:: function( fs) ]
846+ #[ turbo_tasks:: function( fs, invalidator ) ]
847847 async fn write_link ( & self , fs_path : Vc < FileSystemPath > , target : Vc < LinkContent > ) -> Result < ( ) > {
848848 mark_session_dependent ( ) ;
849849 let full_path = self . to_sys_path ( fs_path) . await ?;
@@ -962,7 +962,7 @@ impl FileSystem for DiskFileSystem {
962962 Ok ( ( ) )
963963 }
964964
965- #[ turbo_tasks:: function( fs) ]
965+ #[ turbo_tasks:: function( fs, invalidator ) ]
966966 async fn metadata ( & self , fs_path : Vc < FileSystemPath > ) -> Result < Vc < FileMeta > > {
967967 mark_session_dependent ( ) ;
968968 let full_path = self . to_sys_path ( fs_path) . await ?;
0 commit comments