package dkml-dune-dsl-show

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type args = {
  1. entire_params_file : Mustache.Json.t;
    (*

    The entire parameters file as a single JSON object. At minimum the JSON object should contain the "param-sets" array with at least one (possibly empty) object:

    {
      "param-sets": [{}]
    }
    *)
  2. params : Mustache.Json.t;
    (*

    An array item in the "param-sets" array that is the source of values for a Mustache template. Each array item is a JSON object. In the canonical Mustache documentation the JSON object is called a "hash".

    *)
  3. params_idx : int;
    (*

    Zero-based index of params in the user-supplied "param-sets".

    *)
}
module I : DkmlDuneDsl.Dune.SYM with type 'a repr = args -> out

An interpreter of the Dune DSL whose interpreted result is a s-exp of a valid Dune file parameterizable by Mustache JSON parameters.

val plain_hum : (args -> out) list -> string

Show the DSL expression as a plain, human-readable, valid Dune file

val pretty : (args -> out) list -> string

Show the DSL expression as a Dune file with colors if your terminal supports it; do not use for writing Dune files!