package mlt_parser

  1. Overview
  2. Docs
Parsing of top-expect files

Install

Dune Dependency

Authors

Maintainers

Sources

mlt_parser-v0.16.0.tar.gz
sha256=44a2d0f4d12e64fddde494ce8d61a0afa27fbfb84bb46ccc2c590372c0c4d516

Description

Mlt_parser contains functions for parsing .mlt files (which contain OCaml toplevel sessions) both to power toplevel expect tests and to support a tool that converts .mlt files into .org files, for literate-style documentation.

Published: 14 Jun 2023

README

MLT Parser

Mlt_parser contains functions for parsing *.mlt files, which contain OCaml toplevel sessions -- i.e., a series of statements followed by their output (in the form of expect tests).

The first of these functions, split_chunks, was extracted out of Toplevel_expect_test, where it's used to divide the toplevel session into "chunks", where each chunk comprises a set of toplevel code phrases (statements separated by ;;) and the expect test they precede.

The second, parse, is used by a tool that converts *.mlt files into *.org files. That tool needs to be able to distinguish OCaml code phrases, expect tests, and blocks of org-mode markup (delimited by [%%org] annotations).

Dependencies (6)

  1. ppxlib >= "0.28.0"
  2. dune >= "2.0.0"
  3. ppx_jane >= "v0.16" & < "v0.17"
  4. ppx_expect >= "v0.16" & < "v0.17"
  5. core >= "v0.16" & < "v0.17"
  6. ocaml >= "4.14.0"

Dev Dependencies

None

Used by (1)

  1. toplevel_expect_test >= "v0.16.0"

Conflicts

None