thp/src/syntax/mod.rs

8 lines
190 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
2022-11-29 00:16:55 +00:00
pub fn _construct_ast(_tokens: Vec<Token>) -> Result<(), String> {
2022-11-28 23:33:34 +00:00
Err(String::from("NOT IMPLEMENTED"))
2022-11-21 21:58:51 +00:00
}