We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd35c3 commit a7bc520Copy full SHA for a7bc520
crates/compilers/src/preprocessor/data.rs
@@ -1,3 +1,4 @@
1
+use super::span_to_range;
2
use foundry_compilers_artifacts::{Source, Sources};
3
use path_slash::PathExt;
4
use solar_parse::interface::{Session, SourceMap};
@@ -10,8 +11,6 @@ use std::{
10
11
path::{Path, PathBuf},
12
};
13
-use super::span_to_range;
14
-
15
/// Keeps data about project contracts definitions referenced from tests and scripts.
16
/// Contract id -> Contract data definition mapping.
17
pub type PreprocessorData = BTreeMap<ContractId, ContractData>;
0 commit comments