mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-22 14:24:44 +00:00
added first draft for lib-crates for test_random and test_random_derive (lighthouse-246)
This commit is contained in:
15
eth2/utils/test_random_derive/src/lib.rs
Normal file
15
eth2/utils/test_random_derive/src/lib.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
extern crate proc_macro;
|
||||
|
||||
use crate::proc_macro::TokenStream;
|
||||
use quote::quote;
|
||||
use syn;
|
||||
use syn::DeriveInput;
|
||||
|
||||
#[proc_macro_derive(TestRandom)]
|
||||
pub fn test_random_derive(input: TokenStream) -> TokenStream {
|
||||
let ast = syn::parse(input).unwrap();
|
||||
|
||||
impl_test_random(&ast)
|
||||
}
|
||||
|
||||
fn impl_test_random(ast: &DeriveInput) -> TokenStream {}
|
||||
Reference in New Issue
Block a user