2023-09-09 01:17:46 +00:00
|
|
|
use crate::{
|
2023-09-20 01:06:38 +00:00
|
|
|
error_handling::SyntaxError,
|
2023-09-09 01:17:46 +00:00
|
|
|
lexic::token::{Token, TokenType},
|
|
|
|
utils::Result3,
|
|
|
|
};
|
|
|
|
|
2023-09-20 01:06:38 +00:00
|
|
|
use super::SyntaxResult;
|
|
|
|
|
|
|
|
/// Expects the token at `pos` to be of type `token_type`
|
2023-09-09 01:17:46 +00:00
|
|
|
pub fn try_token_type(tokens: &Vec<Token>, pos: usize, token_type: TokenType) -> Result3<&Token> {
|
|
|
|
match tokens.get(pos) {
|
|
|
|
Some(t) if t.token_type == token_type => Result3::Ok(t),
|
2023-09-20 01:06:38 +00:00
|
|
|
Some(t) if t.token_type == TokenType::EOF || t.token_type == TokenType::NewLine => Result3::None,
|
|
|
|
Some(t) => Result3::Err(t),
|
|
|
|
None => Result3::None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_operator(tokens: &Vec<Token>, pos: usize, operator: String) -> Result3<&Token> {
|
|
|
|
match tokens.get(pos) {
|
|
|
|
Some(t) if t.token_type == TokenType::Operator && t.value == operator => Result3::Ok(t),
|
2023-09-10 16:16:34 +00:00
|
|
|
Some(t) if t.token_type == TokenType::NewLine || t.token_type == TokenType::EOF => {
|
2023-09-09 01:17:46 +00:00
|
|
|
Result3::None
|
|
|
|
}
|
|
|
|
Some(t) => Result3::Err(t),
|
|
|
|
None => Result3::None,
|
|
|
|
}
|
|
|
|
}
|
2023-09-20 01:06:38 +00:00
|
|
|
|
|
|
|
pub fn expect_token_w<'a>(
|
|
|
|
tokens: &'a Vec<Token>,
|
|
|
|
pos: usize,
|
|
|
|
token_type: TokenType,
|
|
|
|
error_message: String,
|
|
|
|
prev_token: &Token,
|
|
|
|
) -> Result<&'a Token, Option<SyntaxResult>> {
|
|
|
|
match tokens.get(pos) {
|
|
|
|
Some(t) if t.token_type == token_type => Ok(t),
|
|
|
|
Some(t) if t.token_type == TokenType::EOF || t.token_type == TokenType::NewLine => Err(Some(SyntaxResult::Err(SyntaxError {
|
|
|
|
reason: error_message,
|
|
|
|
error_start: prev_token.position,
|
|
|
|
error_end: prev_token.get_end_position(),
|
|
|
|
}))),
|
|
|
|
Some(t) => Err(Some(SyntaxResult::Err(SyntaxError {
|
|
|
|
reason: error_message,
|
|
|
|
error_start: t.position,
|
|
|
|
error_end: t.get_end_position(),
|
|
|
|
}))),
|
|
|
|
None => Err(Some(SyntaxResult::Err(SyntaxError {
|
|
|
|
reason: error_message,
|
|
|
|
error_start: prev_token.position,
|
|
|
|
error_end: prev_token.get_end_position(),
|
|
|
|
}))),
|
|
|
|
}
|
|
|
|
}
|