14 lines
292 B
Rust
14 lines
292 B
Rust
//! # Token
|
|
//!
|
|
//! Stores a component of a file as a [Type], some [Data], and a line and column number
|
|
#![warn(clippy::all)]
|
|
#![feature(decl_macro)]
|
|
|
|
pub mod token;
|
|
pub mod token_data;
|
|
pub mod token_type;
|
|
|
|
pub use token::Token;
|
|
pub use token_data::Data;
|
|
pub use token_type::{Keyword, Type};
|