feat(codemode): support property deletion (#37335)

This commit is contained in:
Aiden Cline
2026-07-16 12:21:28 -05:00
committed by GitHub
parent 041cda905d
commit ad8e6b1fb6
3 changed files with 93 additions and 1 deletions
+2 -1
View File
@@ -117,7 +117,8 @@ ultimate source of truth.
- [x] Unary `+`, unary `-`, `void`, `typeof`, `instanceof`, and own-property-only `in`.
- [x] Prefix and postfix `++` and `--`.
- [x] Plain, arithmetic, bitwise, and logical assignment operators.
- [ ] Property deletion, including computed forms such as `delete object[key]`.
- [x] Property deletion on plain data objects and arrays, including computed and optional forms; deleting an array index
creates a hole without changing its length.
## Promises and tools