js-macros 0.1.5

Quickly prototype procedural macros using JavaScript or TypeScript!
Documentation
1
2
3
4
5
6
7
8
9
use js_macros::say_hello;

/// This [say_hello] macro is defined in `../js-macros/custom_attribute.ts`
#[say_hello(message = "Hello, you called test!")]
fn test() {}

fn main() {
    test();
}