Expand description

This crate provides Verilog language support for the tree-sitter parsing library.

Typically, you will use the LANGUAGE constant to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = r#"
module Adder (input a, input b, output sum);
    assign sum = a + b;
    initial $display("Hello, Verilog!");
    initial $finish;
endmodule
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_verilog::LANGUAGE;
parser
    .set_language(&language.into())
    .expect("Error loading Verilog parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Constants