roadmap: 0.6, incremental compilation

This commit is contained in:
Alexander Medvednikov 2024-07-23 03:35:57 +03:00 committed by GitHub
parent d9a3a3aa0a
commit 22df56facd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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