Gears
Gears
All done now. - I've made the various refactors you suggested - The `check_valid_name` functions have now been reworked into two functions: `check_name_case` and `correct_name_case` - `check_name_case` returns an error...
I've made some changes: - This code action now applies to any pattern - There didn't seem to be a `visit_pattern` method in the ast visitor, nor seemingly is the...
I have now added the pattern visiting methods to the AST visitor trait
With the case of no variables, I somehow overlooked a mistake in my implementation. That should now be fixed.
The tests failing on macos seems to be a network issue?
I've now fixed that. The code action applies to anywhere between the `let` keyword and just before the value, as both those locations were already stored in the AST. The...
I think #3316 should have closed this
I've updated the parts which you suggested and are directly related to this PR. I guess I'll leave this as a draft for now, and open an issue to improve...
Alright, that case should be fixed now
Actually there's one more case I want to fix before this is merged: ```gleam let value = case a {} ``` Since it determines the indentation based on the start...