2021-08-17 19:34:38 +02:00
|
|
|
# Todo
|
|
|
|
- [x] Env shorthand
|
|
|
|
- [x] String interpolation
|
|
|
|
- [x] Aliases
|
|
|
|
- [x] Env vars
|
|
|
|
- [x] Sub commands
|
|
|
|
- [x] Floats
|
|
|
|
- [x] Tests
|
2021-08-17 20:00:16 +02:00
|
|
|
- [x] Decl requires $ but shouldn't
|
2021-08-17 19:34:38 +02:00
|
|
|
- [x] alias highlighting at call site
|
|
|
|
- [x] refactor into subcrates
|
|
|
|
- [x] subcommand alias
|
2021-08-17 20:00:16 +02:00
|
|
|
- [x] type inference from successful parse (eg not `List<unknown>` but `List<int>`)
|
2021-09-01 05:17:14 +02:00
|
|
|
- [x] parsing tables
|
2021-09-06 04:22:58 +02:00
|
|
|
- [x] Block params
|
2021-09-06 04:40:55 +02:00
|
|
|
- [x] Ranges
|
2021-09-07 00:11:12 +02:00
|
|
|
- [x] Column path
|
2021-09-07 05:37:02 +02:00
|
|
|
- [x] ...rest without calling it rest
|
2021-09-07 09:09:49 +02:00
|
|
|
- [x] Iteration (`each`) over tables
|
2021-09-09 23:47:57 +02:00
|
|
|
- [x] Row conditions
|
2021-09-10 00:09:40 +02:00
|
|
|
- [x] Simple completions
|
2021-09-15 19:08:40 +02:00
|
|
|
- [x] Detecting `$it` currently only looks at top scope but should find any free `$it` in the expression (including subexprs)
|
|
|
|
- [x] Signature needs to make parameters visible in scope before block is parsed
|
2021-09-25 10:46:43 +02:00
|
|
|
- [x] Externals
|
2021-09-29 20:17:51 +02:00
|
|
|
- [x] Modules and imports
|
|
|
|
- [ ] Exports
|
2021-09-21 06:03:06 +02:00
|
|
|
- [ ] Support for `$in`
|
2021-09-08 20:54:27 +02:00
|
|
|
- [ ] Value serialization
|
2021-09-07 09:59:57 +02:00
|
|
|
- [ ] Handling rows with missing columns during a cell path
|
2021-09-07 09:54:48 +02:00
|
|
|
- [ ] Error shortcircuit (stopping on first error)
|
2021-09-06 20:05:46 +02:00
|
|
|
- [ ] ctrl-c support
|
2021-08-27 04:30:10 +02:00
|
|
|
- [ ] operator overflow
|
2021-08-17 19:34:38 +02:00
|
|
|
- [ ] finish operator type-checking
|
|
|
|
- [ ] Source
|
2021-09-21 06:03:06 +02:00
|
|
|
- [ ] Overlays (replacement for `autoenv`)
|
2021-08-17 19:34:38 +02:00
|
|
|
|
|
|
|
## Maybe:
|
|
|
|
- [ ] default param values?
|
|
|
|
- [ ] Unary not?
|
2021-09-28 01:40:08 +02:00
|
|
|
- [ ] let [first, rest] = [1, 2, 3] (design question: how do you pattern match a table?)
|