| commit | fb134ed1be77395bd5ae5bd369a44d0b459e7925 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Sun Mar 15 23:17:48 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Sun Mar 15 23:17:48 2020 -0700 |
| tree | 0243ac6b70b0704d59ed01904c1d0d720b13943c | |
| parent | 2fb14e934be453c0d4ad4840ab0d5b8c85d00bed [diff] [blame] |
Implement parsing () type
diff --git a/syntax/mod.rs b/syntax/mod.rs index 1acb9a5..e702be0 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -13,13 +13,13 @@ mod tokens; pub mod types; -use self::span::Span; use proc_macro2::Ident; use syn::{LitStr, Token}; pub use self::atom::Atom; pub use self::doc::Doc; pub use self::parse::parse_items; +pub use self::span::Span; pub use self::types::Types; pub enum Api {