Add missing import in vscode, fix add missing cases at EOF
Some checks failed
Publish Playground / build (push) Has been cancelled
Publish Playground / deploy (push) Has been cancelled

This commit is contained in:
2026-02-07 22:23:45 -08:00
parent 83e4adb45b
commit d36f6ddacb
5 changed files with 44 additions and 7 deletions

View File

@@ -35,7 +35,7 @@
- [ ] add missing cases should skip indented lines
- [ ] add missing cases should handle `_::_`
- [ ] add missing cases should share code between vscode and playground
- [ ] "Not in scope" should offer to import
- [x] "Not in scope" should offer to import
- [ ] Case split
- [ ] Delay checking
- We have things like `foldr (\ x acc => case x : ...`, where the lambda doesn't have a good type, so we have to be explicit. If we could defer the checking of that expression until more things are solved, we might not need the annotation (e.g. checking the other arguments). Some `case` statements may have a similar situation.
@@ -157,6 +157,7 @@
- [ ] warn on unused imports?
- Probably have to mark on name lookup, maybe wait until we have query-based
- [x] redo code to determine base path
- [x] emit only one branch for default case when splitting inductives
- [x] save/load results of processing a module