diff --git a/src/specification/parser/readme.md b/src/specification/parser/readme.md index deabfd3..5a1ce1a 100644 --- a/src/specification/parser/readme.md +++ b/src/specification/parser/readme.md @@ -20,6 +20,7 @@ | `&&` | Left to Right | logical_and | ✅ | | \|\| | Left to Right | logical_or | ✅ | | `..` | Left to Right | range | ✅ | -| `?:` | Left to Right | ternary | ✅ | -| `=` `:=` `+=` `-=` `*=` `/=` `^=` `%=` | Right to Left | assign | ✅? | -| `,` | Left to Right | comma | ✅ | +| `?:` | Right to Left | ternary | ✅ | +| `=` `:=` `+=` `-=` `*=` `/=` `^=` `%=` | Right to Left | assign | ✅ | +| await yield | Right to Left | await_yield | ✅ | +| `,` | None | comma | ✅ |