From 8a5b3cc6c95eb31fa7530117b9860e3fa52e5e0f Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 23 Dec 2022 13:58:02 +0100 Subject: [PATCH] fix: reexport SourceLocation (#1971) --- ethers-solc/src/artifacts/ast/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-solc/src/artifacts/ast/mod.rs b/ethers-solc/src/artifacts/ast/mod.rs index e2f7382f..82e01a2b 100644 --- a/ethers-solc/src/artifacts/ast/mod.rs +++ b/ethers-solc/src/artifacts/ast/mod.rs @@ -19,7 +19,7 @@ pub mod visitor; /// A low fidelity representation of the AST. pub(crate) mod lowfidelity; -pub use lowfidelity::{Ast, Node, NodeType}; +pub use lowfidelity::{Ast, Node, NodeType, SourceLocation as LowFidelitySourceLocation}; /// Types for the Yul AST. ///