@@ -833,7 +833,7 @@ impl AppProject {
833833 server_component_entries,
834834 } = & * find_server_entries ( * rsc_entry) . await ?;
835835
836- let graph = SingleModuleGraph :: new_with_entries_visited (
836+ let graph = SingleModuleGraph :: new_with_entries_visited_intern (
837837 vec ! [
838838 (
839839 server_utils
@@ -851,7 +851,7 @@ impl AppProject {
851851 let mut visited_modules = VisitedModules :: from_graph ( graph) ;
852852
853853 for module in server_component_entries. iter ( ) {
854- let graph = SingleModuleGraph :: new_with_entries_visited (
854+ let graph = SingleModuleGraph :: new_with_entries_visited_intern (
855855 vec ! [ ( vec![ ResolvedVc :: upcast( * module) ] , ChunkGroupType :: Entry ) ] ,
856856 visited_modules,
857857 ) ;
@@ -872,15 +872,15 @@ impl AppProject {
872872 }
873873 visited_modules
874874 } else {
875- let graph = SingleModuleGraph :: new_with_entries_visited (
875+ let graph = SingleModuleGraph :: new_with_entries_visited_intern (
876876 vec ! [ ( client_shared_entries, ChunkGroupType :: Evaluated ) ] ,
877877 VisitedModules :: empty ( ) ,
878878 ) ;
879879 graphs. push ( graph) ;
880880 VisitedModules :: from_graph ( graph)
881881 } ;
882882
883- let graph = SingleModuleGraph :: new_with_entries_visited (
883+ let graph = SingleModuleGraph :: new_with_entries_visited_intern (
884884 vec ! [ ( vec![ ResolvedVc :: upcast( rsc_entry) ] , ChunkGroupType :: Entry ) ] ,
885885 visited_modules,
886886 ) ;
@@ -889,7 +889,7 @@ impl AppProject {
889889
890890 let base = ModuleGraph :: from_graphs ( graphs. clone ( ) ) ;
891891 let additional_entries = endpoint. additional_entries ( base) ;
892- let additional_module_graph = SingleModuleGraph :: new_with_entries_visited (
892+ let additional_module_graph = SingleModuleGraph :: new_with_entries_visited_intern (
893893 additional_entries. owned ( ) . await ?,
894894 visited_modules,
895895 ) ;
0 commit comments