1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62

#[macro_export]
macro_rules! static_data {
	[
		$(#[$($mt:tt)*])* pub $(($($v_t:tt)*))* static ref $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => {
		$crate::once_const_static_data! {
			$(#[$($mt)*])* pub $( ($($v_t)*) )* static ref $name : $t = $a;
		}
		
		$crate::static_data! {
			$($tt)*
		}
	};
	[
		$(#[$($mt:tt)*])* static ref $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => {
		$crate::once_const_static_data! {
			$(#[$($mt)*])* static ref $name : $t = $a;
		}
		
		$crate::static_data! {
			$($tt)*
		}
	};
	//END DEF.
	
	//RUNTIME
	[
		$(#[$($mt:tt)*])* pub $(($($v_t:tt)*))* static ref +runtime $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => {
		//#[cfg(feature = "once_runtime")]
		$crate::once_runtime_data! {
			$(#[$($mt)*])* pub $( ($($v_t)*) )* static ref +runtime $name : $t = $a;
		}
		
		//#[cfg(not(feature = "once_runtime"))]
		//compile_error!("Expected flag `feature=once_runtime` and `feature=trivial_bounds`");
		
		$crate::static_data! {
			$($tt)*
		}
	};
	[
		$(#[$($mt:tt)*])* static ref +runtime $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => {
		//#[cfg(feature = "once_runtime")]
		$crate::once_runtime_data! {
			$(#[$($mt)*])* static ref +runtime $name : $t = $a;
		}
		
		//#[cfg(not(feature = "once_runtime"))]
		//compile_error!("Expected flag `feature=once_runtime` and `feature=trivial_bounds`");
		
		$crate::static_data! {
			$($tt)*
		}
	};
	

	() => ()
}