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.
HIGHLIGHTS_QUERY
INJECTIONS_QUERY
LANGUAGE_FSHARP
The tree-sitter LanguageFn for this grammar.
LANGUAGE_SIGNATURE
LOCALS_QUERY
SIGNATURE_NODE_TYPES
TAGS_QUERY