Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add prefix of the part-end delimiter to the part #387

Merged
merged 19 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
- Report errors and exit codes of toplevel directives (#382, @talex5,
@Leonidas-from-XIV)
- Fix block locations in error reporting (#389, @NathanReb)
- Include the content of the line that features the `part-end` MDX directive in
the output, before that line would've been dropped (#374, #387,
@Leonidas-from-XIV)

#### Removed

Expand Down
1 change: 0 additions & 1 deletion lib/mdx.ml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module Cram = Cram
module Deprecated = Deprecated
module Document = Document
module Toplevel = Toplevel
module Ocaml_delimiter = Ocaml_delimiter
module Part = Part
module Block = Block
module Mli_parser = Mli_parser
Expand Down
1 change: 0 additions & 1 deletion lib/mdx.mli
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ module Cram = Cram
module Deprecated = Deprecated
module Document = Document
module Toplevel = Toplevel
module Ocaml_delimiter = Ocaml_delimiter
module Part = Part
module Block = Block
module Mli_parser = Mli_parser
Expand Down
96 changes: 0 additions & 96 deletions lib/ocaml_delimiter.ml

This file was deleted.

23 changes: 0 additions & 23 deletions lib/ocaml_delimiter.mli

This file was deleted.

Loading