Update readme.md

This commit is contained in:
Artemy 2023-12-26 20:24:27 +03:00
parent c753cf2aca
commit 7e0d3b0640

View file

@ -6,8 +6,8 @@
| Operator/Expression | Associativity | Parser fn name | Impl | | Operator/Expression | Associativity | Parser fn name | Impl |
| -------------------------------------- | ------------- | -------------- | ---- | | -------------------------------------- | ------------- | -------------- | ---- |
| Method calls | Left to Right | call | ❌ | | Method calls, Members | Left to Right | call | ✅ |
| Function calls | Left to Right | call | | | Function calls | Left to Right | call | |
| `!` `++` `--` `()` `~` | Left to Right | factor | ✅ | | `!` `++` `--` `()` `~` | Left to Right | factor | ✅ |
| `^` | Left to Left | power | ✅ | | `^` | Left to Left | power | ✅ |
| `*` `/` `%` | Left to Right | term | ✅ | | `*` `/` `%` | Left to Right | term | ✅ |