├── .gitignore ├── META ├── Makefile ├── README.md ├── examples ├── bar.ml ├── interactive_splom.ml ├── repeat_layer.ml ├── stacked_bar.ml └── trellis_area.ml ├── gen ├── gen.ml ├── gen.sh ├── gen_utils.ml ├── ir.ml ├── ir.mli ├── json_utils.ml ├── let_syntax.ml ├── let_syntax.mli ├── parse_utils.ml ├── test │ ├── dumpstx.sh │ └── stx.ml └── v2.0.0-rc2.json ├── opam ├── test └── targets │ ├── bar.json │ ├── interactive_splom.json │ ├── repeat_layer.json │ ├── stacked_bar.json │ └── trellis_area.json └── vegaLite.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | gen/gen.byte 3 | test.ml -------------------------------------------------------------------------------- /META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/META -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/README.md -------------------------------------------------------------------------------- /examples/bar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/examples/bar.ml -------------------------------------------------------------------------------- /examples/interactive_splom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/examples/interactive_splom.ml -------------------------------------------------------------------------------- /examples/repeat_layer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/examples/repeat_layer.ml -------------------------------------------------------------------------------- /examples/stacked_bar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/examples/stacked_bar.ml -------------------------------------------------------------------------------- /examples/trellis_area.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/examples/trellis_area.ml -------------------------------------------------------------------------------- /gen/gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/gen.ml -------------------------------------------------------------------------------- /gen/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/gen.sh -------------------------------------------------------------------------------- /gen/gen_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/gen_utils.ml -------------------------------------------------------------------------------- /gen/ir.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/ir.ml -------------------------------------------------------------------------------- /gen/ir.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/ir.mli -------------------------------------------------------------------------------- /gen/json_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/json_utils.ml -------------------------------------------------------------------------------- /gen/let_syntax.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/let_syntax.ml -------------------------------------------------------------------------------- /gen/let_syntax.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/let_syntax.mli -------------------------------------------------------------------------------- /gen/parse_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/parse_utils.ml -------------------------------------------------------------------------------- /gen/test/dumpstx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/test/dumpstx.sh -------------------------------------------------------------------------------- /gen/test/stx.ml: -------------------------------------------------------------------------------- 1 | type t = { 2 | x : int [@typ `Ordinal] 3 | } 4 | -------------------------------------------------------------------------------- /gen/v2.0.0-rc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/gen/v2.0.0-rc2.json -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/opam -------------------------------------------------------------------------------- /test/targets/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/test/targets/bar.json -------------------------------------------------------------------------------- /test/targets/interactive_splom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/test/targets/interactive_splom.json -------------------------------------------------------------------------------- /test/targets/repeat_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/test/targets/repeat_layer.json -------------------------------------------------------------------------------- /test/targets/stacked_bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/test/targets/stacked_bar.json -------------------------------------------------------------------------------- /test/targets/trellis_area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/test/targets/trellis_area.json -------------------------------------------------------------------------------- /vegaLite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apatil/ocaml-vega-lite/HEAD/vegaLite.ml --------------------------------------------------------------------------------