Crates.io | tree-sitter-merlin6502 |
lib.rs | tree-sitter-merlin6502 |
version | 3.0.1 |
source | src |
created_at | 2022-10-30 14:36:42.565367 |
updated_at | 2024-08-17 17:02:49.146747 |
description | merlin6502 grammar for the tree-sitter parsing library |
homepage | https://github.com/dfgordon/tree-sitter-merlin6502 |
repository | https://github.com/dfgordon/tree-sitter-merlin6502 |
max_upload_size | |
id | 701486 |
size | 1,833,520 |
This is the rust binding for tree-sitter-merlin6502. To use the parser, include the following in your package's Cargo.toml
:
[dependencies]
tree-sitter = "0.22.4"
tree-sitter-merlin6502 = "3.0.1"
Here is a trivial main.rs
example:
use tree_sitter;
use tree_sitter_merlin6502;
fn main() {
let code = " LDA #$00\n";
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_merlin6502::language())
.expect("Error loading Merlin 6502 grammar");
let tree = parser.parse(code,None).unwrap();
println!("{}",tree.root_node().to_sexp());
}
This should print the syntax tree
(source_file (operation (op_lda) (arg_lda (imm (imm_prefix) (num)))))
For more on parsing with rust, see the general guidance here.