tree-sitter-ocaml

Crates.iotree-sitter-ocaml
lib.rstree-sitter-ocaml
version
sourcesrc
created_at2021-03-09 17:26:38.265805
updated_at2025-01-11 21:18:03.540647
descriptionOCaml grammar for tree-sitter
homepage
repositoryhttps://github.com/tree-sitter/tree-sitter-ocaml
max_upload_size
id366424
Cargo.toml error:TOML parse error at line 29, column 1 | 29 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Douglas Creager (dcreager)

documentation

README

tree-sitter-ocaml

CI crates

This crate provides OCaml language support for the tree-sitter parsing library. There are separate languages for implementations (.ml), interfaces (.mli) and types.

Installation

To use this crate, add it to the [dependencies] section of your Cargo.toml file. (Note that you will probably also need to depend on the tree-sitter crate to use the parsed result in any useful way.)

[dependencies]
tree-sitter = "0.24"
tree-sitter-ocaml = "0.24"

Usage

Typically, you will use LANGUAGE_OCAML to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = r#"
    module M = struct
      let x = 0
    end
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_ocaml::LANGUAGE_OCAML;
parser
    .set_language(&language.into())
    .expect("Error loading OCaml language");
let tree = parser.parse(code, None).unwrap();

Use LANGUAGE_OCAML_INTERFACE to parse interface files (with .mli extension) and LANGUAGE_OCAML_TYPE to parse type signatures.

Commit count: 178

cargo fmt