9 releases

0.0.9 Nov 13, 2024
0.0.7 May 31, 2024
0.0.5 Jan 3, 2024
0.0.4 Dec 20, 2023
0.0.1 Feb 25, 2023

#1590 in Procedural macros

Download history 25/week @ 2024-09-14 26/week @ 2024-09-21 23/week @ 2024-09-28 4/week @ 2024-10-05 9/week @ 2024-10-12 2/week @ 2024-10-19 3/week @ 2024-10-26 11/week @ 2024-11-02 117/week @ 2024-11-09 30/week @ 2024-11-16 13/week @ 2024-11-23 13/week @ 2024-11-30 46/week @ 2024-12-07 4/week @ 2024-12-14

51 downloads per month
Used in 4 crates (via ezno-parser)

MIT license

8KB
139 lines

visiting-proc-macro lines of code

A package which generates mutable and immutable visiting implementations for AST nodes.

A visitor is a implementor a trait of which the a function is called of a each node.

This module is specific for the parser module and contains the ability to extend with data.

Usage

use visitable_derive::Visitable;

#[derive(Visitable)]
struct MyAstNode {
	...
}

Attributes

visit_self

Will visit all fields first then self

#[derive(Visitable)]
#[visit_self]
struct MyAstNode {
	...
}

Options:

  • also_visit_first_if Will visit self additionally before if predicate is true
#[derive(Visitable)]
#[visit_self(also_visit_first_if="self.predicate()"]
struct MyAstNode {
	...
}

impl MyAstNode {
	fn predicate(&self) -> bool {
		...
	}
}

visit_skip_field

Skips visiting the field. Used if type does not implement Visitable

#[derive(Visitable)]
struct MyAstNode {
	#[visit_skip_field]
	a: String
}

Dependencies

~275–710KB
~17K SLoC