doc: update README status

This commit is contained in:
mappu 2020-04-09 19:40:36 +12:00
parent 91e39e7e2f
commit f86631880b
1 changed files with 4 additions and 2 deletions

View File

@ -20,6 +20,7 @@ The goal is to produce idiomatic, maintainable Go code as part of a one-off conv
- [ ] Expr - [ ] Expr
- [X] Binary - [X] Binary
- [ ] Scalar - [ ] Scalar
- [ ] Heredocs/nowdocs
[X] Array handling [X] Array handling
- [X] Infer whether to use slice/map for PHP array - [X] Infer whether to use slice/map for PHP array
- [ ] Infer whether map use should be order-preserving - [ ] Infer whether map use should be order-preserving
@ -33,9 +34,9 @@ The goal is to produce idiomatic, maintainable Go code as part of a one-off conv
[ ] Generators [ ] Generators
[ ] Numbered break/continue [ ] Numbered break/continue
[ ] Goto [ ] Goto
[ ] Comma operator [X] `null` -> `nil`
[ ] `null` -> `nil`
[X] Consts and `define()` [X] Consts and `define()`
- [X] Magic constants (`__LINE__`,`__FILE__` etc)
[ ] `isset`/`unset` [ ] `isset`/`unset`
[ ] `instanceof` [ ] `instanceof`
[X] `die` [X] `die`
@ -73,6 +74,7 @@ The goal is to produce idiomatic, maintainable Go code as part of a one-off conv
- [ ] Traits / `use` - [ ] Traits / `use`
- [ ] Abstract methods - [ ] Abstract methods
[ ] Type inference [ ] Type inference
- [ ] Type declarations for literals (string, slice/map with constant initializer, etc)
- [ ] Convert known PHP typenames to Go equivalents - [ ] Convert known PHP typenames to Go equivalents
- [ ] Parse extra types from phpdoc blocks - [ ] Parse extra types from phpdoc blocks
[ ] Infer whether to declare variable (`var` / `:=`) or reuse (`=`) [ ] Infer whether to declare variable (`var` / `:=`) or reuse (`=`)