Up

module Stretch

: sig
#
type t = {
# stretch_filename
: string;
# stretch_linenum
: int;
# stretch_linecount
: int;
# stretch_raw_content
: string;
# stretch_content
: string;
# stretch_keywords
: Keyword.keyword Positions.located list;
}
#
type ocamltype =
# | Declared of t
# | Inferred of string
end