Implemented bitwise operations
This commit is contained in:
parent
f68c50247f
commit
a7d8d6ae20
12 changed files with 287 additions and 5 deletions
|
@ -150,12 +150,12 @@ This is what generates expressions from tokens.
|
|||
- [x] `=`, `:=`
|
||||
- [x] `+`, `-`, `*`, `/`, `%`
|
||||
- [x] `+=`, `-=`, `*=`, `/=`, `%=`
|
||||
- [ ] `&`, `|`, `^`
|
||||
- [ ] `&=`, `|=`, `^=`
|
||||
- [ ] `<<`, `>>`
|
||||
- [ ] `<<=`, `>>=`
|
||||
- [x] `&`, `|`, `^`
|
||||
- [x] `&=`, `|=`, `^=`
|
||||
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
|
||||
- [x] `&&`, `||`
|
||||
- [ ] `<<`, `>>`
|
||||
- [ ] `<<=`, `>>=`
|
||||
|
||||
### Architecture
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue