From 612cce016cb90de049495bb3c23c360787beb4b1 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 23 Dec 2022 11:37:23 +0100 Subject: [PATCH] fix: reexport some ast types again (#1968) --- 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 928bd002..e2f7382f 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; +pub use lowfidelity::{Ast, Node, NodeType}; /// Types for the Yul AST. ///