Compare commits

..

No commits in common. "9f903556f9e3c1eae571a0baee23136c2e328b4c" and "8338c360e042569476ccc455169b9f686bb22f42" have entirely different histories.

5 changed files with 2 additions and 83 deletions

View File

@ -2,13 +2,6 @@ use crate::token::{LiteralType, Token};
#[derive(Debug, Clone)]
pub enum Expr {
Ternary {
first: Box<Expr>,
first_op: Token,
second: Box<Expr>,
second_op: Token,
third: Box<Expr>,
},
Binary {
left: Box<Expr>,
op: Token,

View File

@ -28,32 +28,10 @@ impl Parser<'_> {
}
// Challenge #1. We're writing comma before equality, because it has the lowest precedence
// comma -> equality ("," equality)* ; // expression grammar
// comma -> equality ((,) equality)* ; // expression grammar
fn comma(&mut self) -> Result<Expr, ParseError> {
use TokenType::*;
self.left_association_binary(&[Comma], Self::ternary)
}
// ternary -> equality ("?" expression : ternary)? // expression grammar
fn ternary(&mut self) -> Result<Expr, ParseError> {
use TokenType::*;
let expr = self.equality()?;
if self.match_token(&[Question]) {
let first_op = self.previous().clone();
let second = self.expression()?;
let second_op = self.consume(Colon, "Expected : after ternary operator ?")?;
let third = self.ternary()?;
return Ok(Expr::Ternary {
first: Box::new(expr),
first_op,
second: Box::new(second),
second_op,
third: Box::new(third),
});
}
Ok(expr)
self.left_association_binary(&[Comma], Parser::equality)
}
fn equality(&mut self) -> Result<Expr, ParseError> {
@ -90,11 +68,6 @@ impl Parser<'_> {
self.primary()
}
/* error boundaries:
("!=" | "==") equality
| (">" | ">=" | "<" | "<=") comparison
| ("+") term
| ("/" | "*") factor ; */
fn primary(&mut self) -> Result<Expr, ParseError> {
use LiteralType::*;
use TokenType::*;
@ -128,38 +101,6 @@ impl Parser<'_> {
});
}
if self.match_token(&[Equal, BangEqual]) {
let _ = self.equality();
return Err(ParseError {
token: self.previous().clone(),
msg: "Missing left-hand operand.".to_string(),
});
}
if self.match_token(&[Greater, GreaterEqual, Less, LessEqual]) {
let _ = self.comparison();
return Err(ParseError {
token: self.previous().clone(),
msg: "Missing left-hand operand.".to_string(),
});
}
if self.match_token(&[Plus]) {
let _ = self.term();
return Err(ParseError {
token: self.previous().clone(),
msg: "Missing left-hand operand.".to_string(),
});
}
if self.match_token(&[Star, Slash]) {
let _ = self.factor();
return Err(ParseError {
token: self.previous().clone(),
msg: "Missing left-hand operand.".to_string(),
});
}
Err(ParseError {
token: self.peek().clone(),
msg: "Expect expression.".to_string(),
@ -178,7 +119,6 @@ impl Parser<'_> {
}
// will not be used for the time being (per the book)
// used for error recovery
fn synchronize(&mut self) {
use TokenType::*;
self.advance();

View File

@ -12,16 +12,6 @@ pub fn pretty_print(expr: &Expr) -> String {
None => "None".to_string(),
},
Expr::Unary { op, right } => parenthesize(&op.lexeme, &[right]),
Expr::Ternary {
first,
first_op,
second,
second_op,
third,
} => parenthesize(
&format!("{}{}", first_op.lexeme, second_op.lexeme),
&[first, second, third],
),
}
}

View File

@ -99,8 +99,6 @@ impl Scanner {
'<' => self.add_token(TokenType::Less),
'>' if self.peek_and_match('=') => self.add_token(TokenType::GreaterEqual),
'>' => self.add_token(TokenType::Greater),
'?' => self.add_token(TokenType::Question),
':' => self.add_token(TokenType::Colon),
// checking for comments and just advance the iterator if it's a comment
'/' if self.peek_and_match('/') => {
while self.peek().is_some_and(|x| x != '\n') {

View File

@ -22,8 +22,6 @@ pub enum TokenType {
GreaterEqual,
Less,
LessEqual,
Question,
Colon,
Identifier,
String,