Gabriel Nordeborn

Results 161 issues of Gabriel Nordeborn

I guess this comes down where attributes are allowed etc, but I think it would be valuable to allow doc comments for function arguments. I know there are no attributes...

Example: ```rescript let someFn = (unlabelled: int, ~labelled1, ~opt1=?) => { ignore(opt1) unlabelled+labelled1 } let c1 = someFn(~labelled1=1) ``` Produces this error: ``` This uncurried function has type (int, ~labelled1:...

Work in progress. Compiler PR: https://github.com/rescript-lang/rescript-compiler/pull/6823 Rewatch PR: https://github.com/rescript-lang/rewatch/pull/132

This is part compiler and part editor tooling. Circular deps errors are currently not great, and even breaks editor error reporting.