Crate tree_sitter_python

source ·
Expand description

This crate provides Python 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#"
    def double(x):
        return x * 2
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_python::LANGUAGE;
parser
    .set_language(&language.into())
    .expect("Error loading Python parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Constants§