-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add some interfaces * Recover tests
- Loading branch information
Showing
12 changed files
with
649 additions
and
67 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,4 +1,4 @@ | ||
.PHONY: all pretty-timed coqdoc clean | ||
.PHONY: all pretty-timed test coqdoc clean | ||
|
||
all: | ||
@$(MAKE) -C theories | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
val format_position : Format.formatter -> Lexing.position -> unit | ||
val format_range : Format.formatter -> Lexing.position * Lexing.position -> unit | ||
val format_token : Format.formatter -> MclttExtracted.Parser.token -> unit | ||
val read : Lexing.lexbuf -> MclttExtracted.Parser.token | ||
|
||
val lexbuf_to_token_buffer : | ||
Lexing.lexbuf -> MclttExtracted.Parser.MenhirLibParser.Inter.buffer |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
val main_of_filename : string -> unit | ||
val main_of_program_string : string -> unit |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ let () = | |
exit 1 | ||
end; | ||
let filename = Sys.argv.(1) in | ||
main filename | ||
main_of_filename filename |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
val format_obj : Format.formatter -> MclttExtracted.Syntax.Cst.obj -> unit | ||
val format_exp : Format.formatter -> MclttExtracted.Syntax.exp -> unit | ||
val format_nf : Format.formatter -> MclttExtracted.Syntax.nf -> unit | ||
|
||
val format_main_result : | ||
Format.formatter -> MclttExtracted.Entrypoint.main_result -> unit |
Oops, something went wrong.