3 releases (breaking)
0.2.0 | Oct 24, 2024 |
---|---|
0.1.0 | Sep 26, 2024 |
0.0.1 | Jul 18, 2024 |
0.0.1-rc1 |
|
#136 in Parser tooling
977 downloads per month
Used in fortitude
16MB
379K
SLoC
tree-sitter-fortran
Fortran grammar for tree-sitter. Adapted from this Fortran grammar.
lib.rs
:
This crate provides Fortran 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_fortran::LANGUAGE;
parser
.set_language(&language.into())
.expect("Error loading Fortran parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());