Skip to content

Commit

Permalink
adds TODOs to lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
chanced committed Jun 21, 2024
1 parent 87343b6 commit 3be8724
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,23 @@ extern crate alloc;

use core::{fmt, num::ParseIntError};

// TODO(chanced): make these pub?
mod assign;
pub use assign::{Assign, AssignError, Assignment};

mod delete;
pub use delete::{Delete, DeleteError};

mod resolve;
pub use resolve::{Resolve, ResolveError, ResolveMut};

pub mod prelude;

// TODO: move this into lib.rs
// TODO(chanced): move these into lib.rs
mod tokens;
pub use tokens::*;

// TODO: move this into lib.rs
mod pointer;
pub use pointer::*;

// TODO: move this into lib.rs
mod token;
pub use token::*;

// TODO: move this into lib.rs
pub mod index;
pub use index::Index;

Expand Down

0 comments on commit 3be8724

Please sign in to comment.