4 releases (breaking)

new 0.3.0 Nov 29, 2024
0.2.0 Oct 24, 2024
0.1.0 Sep 26, 2024
0.0.1 Jul 18, 2024
0.0.1-rc1 Aug 28, 2024

#152 in Parser tooling

Download history 88/week @ 2024-08-26 192/week @ 2024-09-02 249/week @ 2024-09-09 157/week @ 2024-09-16 346/week @ 2024-09-23 602/week @ 2024-09-30 410/week @ 2024-10-07 212/week @ 2024-10-14 384/week @ 2024-10-21 123/week @ 2024-10-28 395/week @ 2024-11-04 566/week @ 2024-11-11 957/week @ 2024-11-18 892/week @ 2024-11-25

2,810 downloads per month
Used in fortitude

MIT license

22MB
493K SLoC

C 491K SLoC // 0.0% comments JavaScript 2K SLoC // 0.1% comments Scheme 206 SLoC // 0.0% comments Rust 34 SLoC // 0.1% comments

tree-sitter-fortran

Build Status

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());

Dependencies