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 ab306d6 commit f592d14Copy full SHA for f592d14
crates/compilers/src/resolver/parse.rs
@@ -6,6 +6,16 @@ use std::{
6
path::{Path, PathBuf},
7
};
8
9
+/// Solidity parser.
10
+///
11
+/// Holds a [`solar_sema::Compiler`] that is used to parse sources incrementally.
12
+/// After project compilation ([`Graph::resolve`]), this will contain all sources parsed by
13
+/// [`Graph`].
14
15
+/// This state is currently lost on `Clone`.
16
17
+/// [`Graph`]: crate::Graph
18
+/// [`Graph::resolve`]: crate::Graph::resolve
19
#[derive(derive_more::Debug)]
20
pub struct SolParser {
21
#[debug(ignore)]
0 commit comments