Ameen Radwan
Ameen Radwan
Hi, I wanted to try taking a look at fixing this and wrote up https://github.com/gleam-lang/gleam/pull/2678 idk if this is the right way to solve this but it passes a basic...
Yeah because of how the parser sets the location the entire arg is String. We could add some additional information to the AST if we wanna split it but I...
Huh actually, I wanted to test this out after I typed that and I guess somewhere along the line that statement became no longer true and I'm not sure why....
Ok yeah the actual behavior is that the label has no hover (which matches the previous behavior). I think i had a bug at some middle phase that meant i...
Ok figured out how to get the documentation on hover for custom types. Ultimately ended up adding documentation to TypeConstructors and then passing it through and looking up the type...
I pulled the windows path fix into https://github.com/gleam-lang/gleam/pull/2941
I started looking into this tonight and wanted to write out some initial notes/details to get feedback. - I started out by passing down the errors through all the infer...
Ultimately realized going with your suggestion for a new constant variant solved both problems since at that point we'd only need the type to be correct and not the value....
Ok worked on this a bit and got something that works pretty nicely overall https://github.com/gleam-lang/gleam/assets/5996838/e013d665-680f-4f34-99ff-aa2b4127ff5b
Would it ever make sense to include dev deps in prod? Cause the project compiler already has the mode for dev vs prod so unless there is a reason we...