Ashish Agarwal

Results 57 issues of Ashish Agarwal

Right now you have the following mappings: | opam package | GitHub repo | ocamlfind package | | --- | --- | --- | | iocaml | iocamlserver | none,...

enhancement

I'm still unclear on the file names. We have `ReasonReact.re` and `React.re`, and `ReactEvent.re` and `ReactEventRe.re`. I'm not sure what the `Reason*` prefix and `*Re` suffix indicate if anything. If...

enhancement
question

```ocaml utop # #require "ppx_deriving_yojson";; utop # type t = A | B [@@deriving yojson];; utop # module M = struct type nonrec t = t [@@deriving yojson] end;; utop...

I would like to parse simple test data. For example, here's a file with a request: ``` POST / http/1.1 Content-Type:application/x-www-form-urlencoded; charset=utf8 Date:Mon, 09 Sep 2011 23:36:00 GMT Host:host.foo.com foo=bar...

``` $ cat foo.ml [%%server let x = 42 ] $ js_of_eliom -package eliom.client -ppx -o foo.cmo foo.ml File "foo.ml", line 1, characters 3-9: Uninterpreted extension 'server'. $ mv foo.ml...

Imagine we have our code in a directory `src`, so that there are files like `src/foo.eliom`, `src/bar.eliom`, etc. Then, this happens: ``` $ cd src $ eliomdep -client * _client/bar.cmo:...

build system

`js_of_eliom` takes some arguments specific to it, plus all `js_of_ocaml` args, plus all `ocamlc` args. The final result has these flags duplicated: `version`, `I`, `o`, `linkall`. Similarly, the `-ppx` option...

build system

The key sequence parser only supports C-, M-, and S-. Would it be possible to support Alt- (I'm not sure what is the standard abbreviation for Alt). I'm still unable...

The following works in the normal ocaml toplevel: ``` # let x = 4 let y = 5;; val x : int = 4 val y : int = 5...

It would be useful for `lambda-term-actions` to list the current key bindings to each action. An extra column in the output could show this by default.