-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
57 additions
and
68 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
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
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,23 +1,14 @@ | ||
module Module : sig | ||
type t = Script.var option * Script.definition | ||
val from_lexbuf : Lexing.lexbuf -> t | ||
val from_file : string -> t | ||
val from_string : string -> t | ||
val from_channel : in_channel -> t | ||
end | ||
exception Syntax of Source.region * string | ||
|
||
module Script1 : sig | ||
type t = Script.script | ||
module type S = | ||
sig | ||
type t | ||
val from_lexbuf : Lexing.lexbuf -> t | ||
val from_file : string -> t | ||
val from_string : string -> t | ||
val from_channel : in_channel -> t | ||
end | ||
|
||
module Script : sig | ||
type t = Script.script | ||
val from_lexbuf : Lexing.lexbuf -> t | ||
val from_file : string -> t | ||
val from_string : string -> t | ||
val from_channel : in_channel -> t | ||
end | ||
module Module : S with type t = Script.var option * Script.definition | ||
module Script1 : S with type t = Script.script | ||
module Script : S with type t = Script.script |