thp/src/syntax/mod.rs

8 lines
188 B
Rust
Raw Normal View History

2022-11-21 21:58:51 +00:00
2022-11-28 23:33:34 +00:00
use super::token::Token;
2022-11-21 21:58:51 +00:00
2022-11-28 23:33:34 +00:00
/// Constructs the Misti AST from a vector of tokens
pub fn construct_ast(tokens: Vec<Token>) -> Result<(), String> {
Err(String::from("NOT IMPLEMENTED"))
2022-11-21 21:58:51 +00:00
}