mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
roadmap: 0.6, incremental compilation
This commit is contained in:
parent
d9a3a3aa0a
commit
22df56facd
1 changed files with 14 additions and 9 deletions
23
ROADMAP.md
23
ROADMAP.md
|
@ -32,22 +32,27 @@
|
|||
|
||||
## [Version 0.5]
|
||||
|
||||
- [ ] [Thread safe maps](https://github.com/vlang/v/discussions/11729)
|
||||
- [x] Parallel parser
|
||||
- [x] Parallel checker
|
||||
- [ ] Parallel C compilation
|
||||
- [ ] Direct C/C++ interop without generating wrappers
|
||||
- [ ] `recover()` from panics
|
||||
- [ ] -usecache on by default
|
||||
- [ ] -skip-unused on by default
|
||||
- [x] Parallel parser (not integrated yet)
|
||||
- [x] Parallel checker (not integrated yet)
|
||||
- [x] Parallel C compilation (not integrated yet)
|
||||
- [x] 64/32 bit int depending on arch (will remove array.len limitation on 64 bit systems)
|
||||
- [ ] `copy()` builtin function (e.g. for easier conversion from `[]Foo` to `[4]Foo`)
|
||||
- [x] Lambdas: `a.sort(|a, b| a > b)`
|
||||
- [ ] Custom attributes
|
||||
- [ ] `arr.first() or { }` like `arr[0] or { }`
|
||||
- [ ] ORM migrations
|
||||
- [ ] Contexts that are passed implicitly (e.g. for custom allocation/memory management)
|
||||
|
||||
## [Version 0.6]
|
||||
|
||||
- [ ] Integrate the new parallel parser/checker/cgen
|
||||
- [ ] Incremental compilation
|
||||
- [ ] [Thread safe maps](https://github.com/vlang/v/discussions/11729)
|
||||
- [ ] Direct C/C++ interop without generating wrappers
|
||||
- [ ] `recover()` from panics
|
||||
- [ ] -usecache on by default
|
||||
- [ ] -skip-unused on by default
|
||||
- [ ] ORM migrations
|
||||
|
||||
## [Version 1.0]
|
||||
|
||||
- [ ] Cross compilation of C
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue