|
Project Information
|
This is the repository for Annot, a tool to lookup annotations for Objective Caml source code. The main purpose is to lookup the type annotation for a given identifier in an OCaml source file from within an editor. Annot works by taking the line and column of the identifier and looking up the information in an annotations file produced by the OCaml compiler: $ annot -type 57 5 main.annot string -> (in_channel -> 'a) -> 'a The code above looks up the type annotation for an identifier in main.ml, at line 57, column 5. The invocation of this command is typically bound to a key in an editor rather than invoked explicitly in a shell. For documentation, please see page Annot in the Wiki. If you want to help: I'd be especially grateful for building Debian and OSX packages. |