Skip to content

Commit

Permalink
no export of Element
Browse files Browse the repository at this point in the history
  • Loading branch information
vic1707 committed Sep 21, 2023
1 parent 58dd36a commit 5f69cf3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ mod token;
mod trust_me;
mod yeet;
/* Exports */
pub use element::Element;
pub use parser::Parser;
3 changes: 1 addition & 2 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
use core::str;
/* Crate imports */
use crate::{
element::{BinOp, FunctionCall, UnOp},
element::{BinOp, Element, FunctionCall, UnOp},
token::{Identifier, Operator},
trust_me::trust_me,
yeet::yeet,
Element,
};
/* Constants */
pub const NO_PERCEDENCE: usize = 0;
Expand Down

0 comments on commit 5f69cf3

Please sign in to comment.