Skip to content

Commit

Permalink
root: add ast exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Raiden1411 committed Sep 23, 2024
1 parent eb07920 commit 22be15e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ast/root.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/// Solidity tokenizer.
pub const tokenizer = @import("tokenizer.zig");
/// Solidity abstract syntax tree.
pub const Ast = @import("Ast.zig");
/// Solidity Parser.
pub const Parser = @import("Parser.zig");
2 changes: 2 additions & 0 deletions src/root.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
pub const args = @import("utils/args.zig");
/// Custom abi types into zig types.
pub const abi = @import("abi/root.zig");
/// Solidity tokenizer, parser and AST.
pub const ast = @import("ast/root.zig");
/// All clients that currently zabi supports and uses.
/// All data gets serialized at runtime before a request is sent.
/// The same applies for deserialization.
Expand Down

0 comments on commit 22be15e

Please sign in to comment.