Textuallib.TextualParser
type error =
| SyntaxError of {
loc : Textual.Location.t;
msg : string;
}
| BasicError of TextualBasicVerification.error
| TypeError of TextualTypeVerification.error
| TransformError of Textual.transform_error list
| DeclaredTwiceError of TextualDecls.error
errors related to Textual
*)val pp_error : Textual.SourceFile.t -> F.formatter -> error -> unit
val error_to_string : Textual.SourceFile.t -> error -> string
val parse_string :
Textual.SourceFile.t ->
string ->
(Textual.Module.t, error list) IStdlib.IStd.result
module TextualFile : sig ... end
val capture : TextualFile.t list -> unit
turn a list of textual files into a SIL-Java program and capture them.