2021-02-27 19:18:47 +01:00
|
|
|
## [Version 0.3](https://github.com/vlang/v/projects/5)
|
|
|
|
- [ ] [make `-autofree` the default](https://github.com/vlang/v/issues/6989)
|
2021-07-21 13:29:38 +02:00
|
|
|
- [x] [gc option]
|
2021-02-27 19:18:47 +01:00
|
|
|
- [ ] [coroutines](https://github.com/vlang/v/issues/561)
|
|
|
|
- [x] channels
|
|
|
|
- [x] lock{}
|
|
|
|
- [x] thread safe arrays
|
|
|
|
- [ ] [thread safe maps](https://github.com/vlang/v/issues/6992)
|
|
|
|
- [ ] [C2V translator](https://github.com/vlang/v/issues/6985)
|
|
|
|
- [ ] doom.v
|
|
|
|
- [x] rune type
|
2021-07-03 19:14:09 +02:00
|
|
|
- [x] replace `ustring` with `[]rune`
|
2021-02-27 19:18:47 +01:00
|
|
|
- [x] fix `byte.str()`
|
|
|
|
- [x] maps with non-string keys
|
|
|
|
- [x] iOS/Android support
|
2021-07-21 13:29:38 +02:00
|
|
|
- [ ] parallel parser
|
|
|
|
- [ ] parallel checker
|
|
|
|
- [ ] parallel cgen
|
2021-02-27 19:18:47 +01:00
|
|
|
- [ ] `recover()` from panics
|
|
|
|
- [x] IO streams
|
|
|
|
- [x] struct embedding
|
|
|
|
- [ ] interface embedding
|
|
|
|
- [x] interfaces: allow struct fields (not just methods)
|
|
|
|
- [ ] vfmt: fix common errors automatically (make vars mutable and vice versa, add missing imports)
|
|
|
|
- [ ] method expressions with an explicit receiver as the first argument
|
|
|
|
- [x] short generics syntax (`foo(5)` instead of `foo<int>(5)`)
|
|
|
|
- [ ] fix all remaining generics issues
|
|
|
|
- [ ] merge v.c and v_win.c
|
2021-07-21 13:29:38 +02:00
|
|
|
- [x] more advanced errors, not just `error('message')`
|
2021-02-27 19:18:47 +01:00
|
|
|
- [ ] VLS for autocomplete, refactoring, go to definition etc
|
2021-07-03 19:14:09 +02:00
|
|
|
- [ ] Recursive structs via optionals: `struct Node { next ?Node }`
|
2021-07-20 12:06:59 +02:00
|
|
|
- [ ] Remove `foo = 0` for `&Foo`
|