9 releases
0.1.0 | Jul 26, 2022 |
---|---|
0.0.8 | Jul 24, 2022 |
0.0.3 | Jun 30, 2022 |
#340 in Text editors
665KB
26K
SLoC
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.244
without"'
?
lib.rs
:
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();
Dependencies
~2.7–4MB
~71K SLoC