1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/ROADMAP.md

42 lines
1.2 KiB
Markdown
Raw Normal View History

2022-06-30 10:41:09 +03:00
## [Version 0.4]
2023-02-13 11:29:02 +03:00
2022-06-30 21:20:34 +03:00
- [ ] [Coroutines](https://github.com/vlang/v/discussions/11582)
- [ ] [Thread safe maps](https://github.com/vlang/v/discussions/11729)
- [ ] Parallel parser
- [ ] Parallel checker
- [ ] Parallel C compilation
- [ ] `recover()` from panics
- [x] vfmt: add missing imports (like goimports)
- [ ] Recursive structs via options: `struct Node { next ?Node }`
2023-03-03 16:58:49 +03:00
- [x] First class Option type
2022-07-21 20:47:30 +03:00
- [ ] Optional function struct fields
2021-08-19 08:19:21 +03:00
- [ ] Handle function pointers safely, remove `if function == 0 {`
- [x] Bundle OpenSSL like GC
- [x] Anonymous structs
2022-07-06 21:38:40 +03:00
- [ ] -usecache on by default
- [ ] -skip-unused on by default
2022-07-13 10:04:27 +03:00
- [ ] `any` type
- [ ] `copy()` builtin function (e.g. for easier conversion from `[]Foo` to `[4]Foo`)
2023-03-03 16:58:49 +03:00
- [ ] better documentation platform
## [Version 1.0]
- [ ] Cross compilation of C
- [ ] Big remaining bugs fixed
- [ ] More powerful comptime
- [ ] Constraits for generics
### Tooling
- [ ] More stable VLS
- [ ] Profiler improvements
- [ ] Basic interactive shell with search, sort, filter, etc.
- [ ] VPM
- [ ] New VPM site
- [ ] Package versioning
2023-03-03 16:58:49 +03:00
### Web
- [ ] Site that brings everything together in a single style
- [ ] Interactive educational platform (learning to program for beginners)