9 releases
| 0.1.0 | Jul 26, 2022 |
|---|---|
| 0.0.8 | Jul 24, 2022 |
| 0.0.3 | Jun 30, 2022 |
#225 in #incremental-parser
28 downloads per month
665KB
26K
SLoC
This crate provides nasl 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 = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_nasl::language()).expect("Error loading nasl grammar");
let tree = parser.parse(code, None).unwrap();
tree-sitter-nasl
NASL grammar for tree-sitter. Mostly pirated from tree-sitter-c.
It is in a very early state.
TODO
- what is
send_socket () x 100? - are IPv4 own type e.g.
ip = 192.168.1.244without"'?
Dependencies
~2.5–4MB
~70K SLoC