Iwan

Results 108 comments of Iwan

I'm wondering if the Elm api could handle graph-like data, if you're conceptually walking through a cycle. You want different "views" of a node in this case, i.e. the fields...

Just posting some insights from @andreypopp : ``` "But we can also move artifacts from the global cache's _install directory to the local project's _install directory!" > That may be...

This was actually something I ran into immediately when using this library. I mainly use Interstellar for form validation. Every form gets its own signal. They all have to compose...

@hcarty If you refmt Reason -> Ocaml with refmt and then use ocamlformat, would that work in your case?

Houston, we have a problem ``` /* foo attribute with payload 10 */ @foo(10) bar /* foo attribute on expression 10 */ @foo (10) ``` Menhir can't decide whether to...

We can, trying it out.

Good news, made a small prototype and the brace-less attributes is going to fly after a small massage in the lexer. Bad news, I'm not sure if the braceless extension...

The problem is backwards compatibility. We currently have the following syntax extension sugar ``` %lwt let x = 1; %foo -1; ``` Both forms should co-exist. I'm taking another look...

I interpreted "multiple args" as `structure`, which is a list of `structure_item`. ``` @foo( let x = 1, let y = 2, x + y ) ``` ^^ this might...

https://reasonml.github.io/try?rrjsx=true&reason=DYUwLgBAHhC8EG8BQEKkgQzhAjCt4EARtgEz5YDUxSAvkA In most non-ambiguous cases semicolons aren't required any more.