thp/src/syntax/mod.rs
2023-01-05 12:48:34 -05:00

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"))
}