6 releases (breaking)

0.5.0 Mar 2, 2025
0.4.0 Jan 23, 2025
0.3.0 Nov 29, 2024
0.2.0 Oct 24, 2024
0.0.1-rc1 Aug 28, 2024

#97 in Parser tooling

Download history 957/week @ 2024-11-18 892/week @ 2024-11-25 1468/week @ 2024-12-02 973/week @ 2024-12-09 587/week @ 2024-12-16 33/week @ 2024-12-23 44/week @ 2024-12-30 576/week @ 2025-01-06 487/week @ 2025-01-13 400/week @ 2025-01-20 273/week @ 2025-01-27 159/week @ 2025-02-03 53/week @ 2025-02-10 144/week @ 2025-02-17 380/week @ 2025-02-24 337/week @ 2025-03-03

915 downloads per month
Used in 6 crates (2 directly)

MIT license

32MB
691K SLoC

C 688K 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