forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#3529 from rgrinberg/cram
[cram] file generation
- Loading branch information
Showing
18 changed files
with
509 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
(** .t file parser *) | ||
|
||
(** A command or comment. Output blocks are skipped *) | ||
type block = | ||
| Command of string list | ||
type 'command block = | ||
| Command of 'command | ||
| Comment of string list | ||
|
||
val block : Lexing.lexbuf -> block option | ||
val block : Lexing.lexbuf -> string list block option |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
type block = | ||
| Command of string list | ||
type 'command block = | ||
| Command of 'command | ||
| Comment of string list | ||
} | ||
|
||
|
Oops, something went wrong.