I can see the light

This commit is contained in:
2025-05-02 18:18:13 -04:00
parent d7222cc7a4
commit 57c46b653e
35 changed files with 1247 additions and 1000 deletions

View File

@@ -78,7 +78,7 @@ impl PostfixOp {
match self {
Self::Not => "!",
Self::Ref => "@",
Self::Deref => "*",
Self::Deref => "^",
}
}
pub fn from_token(token: &Token) -> Option<Self> {
@@ -88,7 +88,7 @@ impl PostfixOp {
Some(match symbol {
Symbol::At => Self::Ref,
Symbol::Bang => Self::Not,
Symbol::Asterisk => Self::Deref,
Symbol::Carrot => Self::Deref,
_ => {
return None;
}