@@ -13,7 +13,6 @@ use crate::{
13
13
use alloy_primitives:: hex;
14
14
use foundry_compilers_artifacts:: { SolcLanguage , Source } ;
15
15
use foundry_compilers_core:: { error:: SolcError , utils} ;
16
- use itertools:: Itertools ;
17
16
use md5:: Digest ;
18
17
use solar_parse:: {
19
18
ast:: { FunctionKind , ItemKind , Span , Visibility } ,
@@ -65,14 +64,19 @@ impl Preprocessor<SolcCompiler> for TestOptimizerPreprocessor {
65
64
}
66
65
// Load and parse test and script contracts only (dependencies are automatically
67
66
// resolved).
68
- let preprocessed_paths = sources
69
- . into_iter ( )
70
- . filter ( |( path, source) | {
71
- is_test_or_script ( path, paths) && !source. content . is_empty ( )
72
- } )
73
- . map ( |( path, _) | path. clone ( ) )
74
- . collect_vec ( ) ;
75
- parsing_context. load_files ( & preprocessed_paths) ?;
67
+
68
+ let mut preprocessed_paths = vec ! [ ] ;
69
+ for ( path, source) in sources. iter ( ) {
70
+ if is_test_or_script ( path, paths) && !source. content . is_empty ( ) {
71
+ if let Ok ( src_file) = sess
72
+ . source_map ( )
73
+ . new_dummy_source_file ( path. clone ( ) , source. content . to_string ( ) )
74
+ {
75
+ parsing_context. add_file ( src_file) ;
76
+ preprocessed_paths. push ( path. clone ( ) ) ;
77
+ }
78
+ }
79
+ }
76
80
77
81
let hir_arena = ThreadLocal :: new ( ) ;
78
82
if let Some ( gcx) = parsing_context. parse_and_lower ( & hir_arena) ? {
0 commit comments