8 lines
190 B
Rust
Executable File
8 lines
190 B
Rust
Executable File
|
|
use super::token::Token;
|
|
|
|
/// Constructs the Misti AST from a vector of tokens
|
|
pub fn _construct_ast(_tokens: Vec<Token>) -> Result<(), String> {
|
|
Err(String::from("NOT IMPLEMENTED"))
|
|
}
|