Rename modules

This commit is contained in:
Jeff 2024-08-11 17:24:05 -04:00
parent f5836b66dc
commit 3b0c74010e
3 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ pub mod built_in_function;
pub mod context; pub mod context;
pub mod dust_error; pub mod dust_error;
pub mod identifier; pub mod identifier;
pub mod lex; pub mod lexer;
pub mod parse; pub mod parser;
pub mod token; pub mod token;
pub mod r#type; pub mod r#type;
pub mod value; pub mod value;
@ -20,8 +20,8 @@ pub use built_in_function::{BuiltInFunction, BuiltInFunctionError};
pub use context::{Context, UsageData, VariableData}; pub use context::{Context, UsageData, VariableData};
pub use dust_error::DustError; pub use dust_error::DustError;
pub use identifier::Identifier; pub use identifier::Identifier;
pub use lex::{lex, LexError, Lexer}; pub use lexer::{lex, LexError, Lexer};
pub use parse::{parse, ParseError, Parser}; pub use parser::{parse, ParseError, Parser};
pub use r#type::Type; pub use r#type::Type;
pub use token::{Token, TokenOwned}; pub use token::{Token, TokenOwned};
pub use value::{Value, ValueError}; pub use value::{Value, ValueError};