refactor token names

This commit is contained in:
Raptorox 2026-05-21 17:28:21 +02:00
parent a3d9723a36
commit 8d2582756d
No known key found for this signature in database
GPG key ID: 8B3556FC3ED1F6D8
3 changed files with 16 additions and 16 deletions

View file

@ -4,11 +4,11 @@ pub enum Token {
Ident(String),
// Operators
Add,
Sub,
Mul,
Div,
Mod,
Plus,
Minus,
Asterisk,
Slash,
Percent,
// Parentheses
LParen,