pub fn reverse_polish_notation(
    tokens: &[Token],
    previous_postfix: &[Token],
    operators: &[Token]
) -> Result<Vec<Token>, KclError>