Skip to main content

Crate tree_sitter_fsharp

Crate tree_sitter_fsharp 

Source
Expand description

This crate provides Fsharp language support for the tree-sitter parsing library.

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

let code = r#"
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_fsharp::LANGUAGE_FSHARP;
parser
    .set_language(&language.into())
    .expect("Error loading Fsharp parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Constantsยง

FSHARP_NODE_TYPES
The content of the [node-types.json][] file for this grammar. [node-types.json]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types.html
HIGHLIGHTS_QUERY
INJECTIONS_QUERY
LANGUAGE_FSHARP
The tree-sitter LanguageFn for this fsharp grammar.
LANGUAGE_SIGNATURE
LOCALS_QUERY
SIGNATURE_NODE_TYPES
The content of the [node-types.json][] file for the signature grammar. [node-types.json]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types.html
TAGS_QUERY