Improved modulo tests

This commit is contained in:
Eduard Urbach 2024-07-25 12:21:10 +02:00
parent a31731a84d
commit f68c50247f
Signed by: eduard
GPG key ID: 49226B848C78F6C8
2 changed files with 17 additions and 9 deletions

View file

@ -147,16 +147,15 @@ This is what generates expressions from tokens.
### Operators
- [x] `=`
- [x] `+`, `-`, `*`, `/`
- [x] `+=`, `-=`, `*=`, `/=`
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
- [x] `&&`, `||`
- [ ] `%`
- [ ] `<<`, `>>`
- [ ] `<<=`, `>>=`
- [x] `=`, `:=`
- [x] `+`, `-`, `*`, `/`, `%`
- [x] `+=`, `-=`, `*=`, `/=`, `%=`
- [ ] `&`, `|`, `^`
- [ ] `&=`, `|=`, `^=`
- [ ] `<<`, `>>`
- [ ] `<<=`, `>>=`
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
- [x] `&&`, `||`
### Architecture