forked from AbleScript/ablescript
Removed ! for ain't
This commit is contained in:
parent
7dfdb35685
commit
ec1b8200e0
|
@ -152,7 +152,7 @@ pub enum Expr {
|
|||
rhs: Box<Spanned<Expr>>,
|
||||
kind: BinOpKind,
|
||||
},
|
||||
Not(Box<Spanned<Expr>>),
|
||||
Aint(Box<Spanned<Expr>>),
|
||||
Literal(Value),
|
||||
Cart(Vec<(Spanned<Expr>, Spanned<Expr>)>),
|
||||
Index {
|
||||
|
|
|
@ -174,7 +174,7 @@ impl ExecEnv {
|
|||
NotEqual => Value::Abool((lhs != rhs).into()),
|
||||
}
|
||||
}
|
||||
Not(expr) => !self.eval_expr(expr)?,
|
||||
Aint(expr) => !self.eval_expr(expr)?,
|
||||
Literal(value) => value.clone(),
|
||||
Expr::Cart(members) => Value::Cart(
|
||||
members
|
||||
|
|
|
@ -59,8 +59,8 @@ pub enum Token {
|
|||
#[token("!=")]
|
||||
NotEqual,
|
||||
|
||||
#[regex("!|ain't")]
|
||||
Not,
|
||||
#[token("ain't")]
|
||||
Aint,
|
||||
|
||||
// Keywords
|
||||
#[token("functio")]
|
||||
|
|
|
@ -103,7 +103,7 @@ impl<'source> Parser<'source> {
|
|||
Token::Identifier(_)
|
||||
| Token::String(_)
|
||||
| Token::Integer(_)
|
||||
| Token::Not
|
||||
| Token::Aint
|
||||
| Token::LeftBracket
|
||||
| Token::LeftParen => Ok(Spanned::new(
|
||||
self.value_flow(token)?,
|
||||
|
@ -213,10 +213,10 @@ impl<'source> Parser<'source> {
|
|||
start..self.lexer.span().end,
|
||||
)),
|
||||
|
||||
Token::Not => Ok(Spanned::new(
|
||||
Token::Aint => Ok(Spanned::new(
|
||||
{
|
||||
let next = self.checked_next()?;
|
||||
Expr::Not(Box::new(self.parse_expr(next, buf)?))
|
||||
Expr::Aint(Box::new(self.parse_expr(next, buf)?))
|
||||
},
|
||||
start..self.lexer.span().end,
|
||||
)),
|
||||
|
|
Loading…
Reference in a new issue