Alex
Alex
It's not ready yet, b/c part of this code was written _blindly_. After update to `babel@6` `fly` is broken and I can't build the app to try it out. I'm...
Input: ```reason type t = {x: [@foo] x} and x = int; ``` Output: ```reason type t = {x} and x = int; ```
Expected: ```reason include [%form type input = {name: string}; let validators = { name: { strategy: OnSubmit, validate: ({name}) => Ok(name), }, } ]; ``` Actual: ```reason include [%form type...
Input: ```reason let _ = x => switch (x) { | `A => [%log.debug "DbWroker::Init"]; (); }; ``` Output: ```reason let _ = x => switch (x) { | `A...
JSX: ```reason ``` Compiles to: ```js var React = require("react"); React.createElement("button", { type: "button" }); ``` --- `external`: ```reason type t; [@bs.obj] external make: (~_type: string) => t = "";...
As per Discord discussion, to avoid accidental production builds with `-bs-g` applied via config, apply it via environment variable instead.
I noticed this error when I was implementing config UI for https://github.com/reasonml-editor/atom-ide-reason Sometimes when I type not fast enough in enum field in package's settings I get hard error `Uncaught...
Is there a specific reason not having `ReactEvent.Keyboard.code` binding? IE support is the only one I can think of.
```reason | A(_) => ... ```
```reason | A | B | C => ... ```