1 unstable release
0.0.1 | Aug 21, 2024 |
---|
#243 in #incremental
155KB
4.5K
SLoC
tree-sitter-pydocstring
Python docstring (google style) grammar for tree-sitter.
lib.rs
:
This crate provides PythonDocstring 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();
parser.set_language(&tree_sitter_python_docstring::language()).expect("Error loading PythonDocstring grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());
Dependencies
~2.9–4MB
~77K SLoC