Iwan

Results 24 issues of Iwan

In Elm properties of html tags are defined as a list. ```elm profile user = div [ class "profile" ] [ img [ src user.picture ] [] , span []...

`->` should just be `|.`, a regular infix function with interesting printing/precedence properties as if it was a `.`, and then ppx does all the real logic. Function application on...

CLA Signed

Low prio feature request: the `Js` namespace has a `Vector` module. Should it be moved to Belt? It would be a great enhancement if Belt could expose a `Vector` type...

PRIORITY:HIGH

`I'm not sure what to parse here when looking at "exception".` This error doesn't help at all. We can do better

## Motivation Currently an expression with empty braces results in a syntax error. If you write the same code in Js, it parses. It is quite common while writing code...

Implement parsing of operator tokens for value bindings and value description without escaping.

enhancement

https://forum.rescript-lang.org/t/weird-auto-code-formatting-with-pipe-first-operator/1189 > Here is an example. ```rescript let foo = (fn, value) => fn(value) let bar = (value, fn) => fn(value) ``` > Two simple functions…one takes a function and...

bug

https://forum.rescript-lang.org/t/weird-auto-code-formatting-with-pipe-first-operator/1189 ``` let myPromise = Js.Promise.make((~resolve, ~reject) => resolve(. 2)) myPromise->Js.Promise.then_(value => { Js.log(value) Js.Promise.resolve(value + 2) }, _)->Js.Promise.then_(value => { Js.log(value) Js.Promise.resolve(value + 3) }, _)->Js.Promise.catch(err => { Js.log2("Failure!!",...

bug

https://github.com/rescript-lang/syntax/pull/408#issuecomment-836169935

Add a flag to the parser that parses all functions as uncurried by default. Goal is to let users experiment with having everything as uncurried.